
    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_2774c5860b3b10eba5339b46.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_62f630c4f5fbf3a5c52037f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_26a6b63c27875598336563f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.844000;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_5d10f84a39a05e27b527615d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.525000;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_d99c6d31779d2dc2639b1987.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_5a9f9017cc95f95e86f768c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_ae8dd95f5d6fdd24d6a40301.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.839000;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_810cc1eafadf50a6e63184d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_0a62dfe5cb2f662c2d6bcaa6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_540a25855ae2337e7ad61e65.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d25b916bf48b5e22b7a91e46.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_5ea19527693228006904121e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c22a3b550d931f7b717e727a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2330019cb3abad8b39217e3b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.726000;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:fff;src:url('chunks/assets/font_810511a4a4119804b0adf737.woff2')format("woff");}.fff{font-family:fff;line-height:0.243000;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:ff10;src:url('chunks/assets/font_9c25afbdddc8194ed1c6939e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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:ff11;src:url('chunks/assets/font_e2fc7ed88d913d57abedc0d3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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:ff12;src:url('chunks/assets/font_18cdf0a0055b21e83956bec0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.922000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-28.212000px;}
.v3{vertical-align:-17.358000px;}
.v7{vertical-align:-7.176000px;}
.v5{vertical-align:-4.552716px;}
.vc{vertical-align:-1.491048px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.869066px;}
.v8{vertical-align:13.820848px;}
.va{vertical-align:23.214470px;}
.vb{vertical-align:24.774336px;}
.vd{vertical-align:26.265384px;}
.v1{vertical-align:28.212000px;}
.v9{vertical-align:30.337084px;}
.v6{vertical-align:42.437817px;}
.ls10{letter-spacing:-0.422478px;}
.ls11{letter-spacing:-0.064318px;}
.ls12{letter-spacing:-0.014894px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000098px;}
.ls3{letter-spacing:0.000960px;}
.ls0{letter-spacing:0.000976px;}
.ls4{letter-spacing:0.001037px;}
.lsf{letter-spacing:0.002640px;}
.ls2a{letter-spacing:0.005579px;}
.ls2d{letter-spacing:0.536777px;}
.ls2f{letter-spacing:0.578068px;}
.ls2e{letter-spacing:0.594125px;}
.ls13{letter-spacing:0.803229px;}
.ls2{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.992176px;}
.ls1d{letter-spacing:6.776850px;}
.ls28{letter-spacing:9.164850px;}
.ls26{letter-spacing:9.644850px;}
.ls20{letter-spacing:10.358850px;}
.lsa{letter-spacing:11.954471px;}
.ls1f{letter-spacing:12.090098px;}
.ls1b{letter-spacing:13.281527px;}
.ls24{letter-spacing:13.282942px;}
.ls25{letter-spacing:13.284098px;}
.lsb{letter-spacing:13.808164px;}
.ls29{letter-spacing:13.867939px;}
.ls1a{letter-spacing:14.476942px;}
.ls1c{letter-spacing:14.478098px;}
.ls27{letter-spacing:14.958098px;}
.ls21{letter-spacing:15.197440px;}
.ls1e{letter-spacing:15.527660px;}
.ls22{letter-spacing:15.672098px;}
.lse{letter-spacing:16.976270px;}
.ls5{letter-spacing:17.215373px;}
.lsd{letter-spacing:17.394700px;}
.lsc{letter-spacing:17.454475px;}
.ls6{letter-spacing:20.925302px;}
.ls23{letter-spacing:71.730976px;}
.ls2b{letter-spacing:74.719200px;}
.ls14{letter-spacing:99.807094px;}
.ls15{letter-spacing:99.810098px;}
.ls16{letter-spacing:101.139094px;}
.ls17{letter-spacing:110.334098px;}
.ls19{letter-spacing:202.536098px;}
.ls2c{letter-spacing:263.824942px;}
.ls18{letter-spacing:283.467094px;}
.ls9{letter-spacing:775.601700px;}
.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:-52.437744px;}
.ws1b{word-spacing:-16.617617px;}
.wsf{word-spacing:-14.955955px;}
.ws46{word-spacing:-14.943900px;}
.ws4{word-spacing:-13.599000px;}
.wse{word-spacing:-13.449600px;}
.ws3{word-spacing:-13.294127px;}
.ws2{word-spacing:-11.955150px;}
.ws4b{word-spacing:-10.193043px;}
.ws4c{word-spacing:-10.170442px;}
.ws3f{word-spacing:-9.882357px;}
.ws3e{word-spacing:-9.860445px;}
.ws9c{word-spacing:-9.103307px;}
.ws4d{word-spacing:-8.836984px;}
.ws51{word-spacing:-8.814383px;}
.ws50{word-spacing:-8.158955px;}
.ws4f{word-spacing:-8.136354px;}
.ws93{word-spacing:-6.217670px;}
.ws4e{word-spacing:-6.102265px;}
.ws97{word-spacing:-5.755331px;}
.ws94{word-spacing:-5.739388px;}
.ws58{word-spacing:-3.048556px;}
.wsa{word-spacing:-2.689920px;}
.ws91{word-spacing:-2.570351px;}
.ws2a{word-spacing:-2.510575px;}
.wsbb{word-spacing:-2.486671px;}
.ws57{word-spacing:-2.450800px;}
.ws25{word-spacing:-2.331248px;}
.ws2d{word-spacing:-2.271473px;}
.wsba{word-spacing:-2.151927px;}
.ws60{word-spacing:-2.032370px;}
.wsb7{word-spacing:-2.008465px;}
.wsb0{word-spacing:-1.912824px;}
.wsb2{word-spacing:-1.817183px;}
.wsa8{word-spacing:-1.673721px;}
.ws37{word-spacing:-1.673717px;}
.wsad{word-spacing:-1.625900px;}
.ws8b{word-spacing:-1.554166px;}
.wsab{word-spacing:-1.530259px;}
.ws52{word-spacing:-1.255288px;}
.ws1e{word-spacing:-1.135736px;}
.ws1f{word-spacing:-1.075961px;}
.ws45{word-spacing:-0.896634px;}
.ws33{word-spacing:-0.836858px;}
.ws8f{word-spacing:-0.717307px;}
.ws9a{word-spacing:-0.646885px;}
.ws8d{word-spacing:-0.597756px;}
.ws59{word-spacing:-0.537980px;}
.ws36{word-spacing:-0.418429px;}
.ws1d{word-spacing:-0.358654px;}
.ws81{word-spacing:-0.298878px;}
.wsb5{word-spacing:-0.286924px;}
.ws31{word-spacing:-0.239102px;}
.ws30{word-spacing:-0.179327px;}
.ws39{word-spacing:-0.059776px;}
.ws72{word-spacing:-0.047821px;}
.ws8e{word-spacing:-0.035866px;}
.ws1{word-spacing:0.000000px;}
.ws74{word-spacing:0.001390px;}
.ws70{word-spacing:0.003165px;}
.wsbc{word-spacing:0.047821px;}
.ws61{word-spacing:0.059776px;}
.ws53{word-spacing:0.119551px;}
.ws5b{word-spacing:0.179327px;}
.ws21{word-spacing:0.298878px;}
.ws22{word-spacing:0.358654px;}
.wsb{word-spacing:0.376589px;}
.ws18{word-spacing:0.418429px;}
.ws29{word-spacing:0.478205px;}
.ws87{word-spacing:0.537980px;}
.ws7d{word-spacing:0.777083px;}
.ws5f{word-spacing:0.896634px;}
.ws79{word-spacing:0.956410px;}
.wsac{word-spacing:0.956412px;}
.ws5e{word-spacing:1.016185px;}
.ws24{word-spacing:1.135736px;}
.ws66{word-spacing:1.255288px;}
.wsb4{word-spacing:1.291156px;}
.ws7c{word-spacing:1.315063px;}
.wsaa{word-spacing:1.386797px;}
.ws13{word-spacing:1.494390px;}
.ws80{word-spacing:1.554166px;}
.ws67{word-spacing:1.733492px;}
.ws7{word-spacing:1.775347px;}
.ws32{word-spacing:1.793268px;}
.ws16{word-spacing:1.853044px;}
.ws8c{word-spacing:1.912819px;}
.ws27{word-spacing:1.972595px;}
.ws82{word-spacing:2.032370px;}
.wsb1{word-spacing:2.056286px;}
.ws55{word-spacing:2.092146px;}
.ws9{word-spacing:2.098138px;}
.ws20{word-spacing:2.151922px;}
.ws19{word-spacing:2.211697px;}
.ws1a{word-spacing:2.271473px;}
.ws65{word-spacing:2.450800px;}
.ws26{word-spacing:2.510575px;}
.wsb6{word-spacing:2.582312px;}
.ws17{word-spacing:2.630126px;}
.ws86{word-spacing:2.689902px;}
.ws63{word-spacing:2.749678px;}
.wsa3{word-spacing:2.809453px;}
.wsae{word-spacing:2.869236px;}
.wsaf{word-spacing:2.893082px;}
.ws88{word-spacing:2.929004px;}
.ws62{word-spacing:3.048556px;}
.wsa4{word-spacing:3.108331px;}
.wsa9{word-spacing:3.108339px;}
.ws2e{word-spacing:3.168107px;}
.ws14{word-spacing:3.227882px;}
.ws5d{word-spacing:3.407209px;}
.wsd{word-spacing:3.496896px;}
.ws38{word-spacing:3.526760px;}
.ws54{word-spacing:3.586536px;}
.ws2c{word-spacing:3.646312px;}
.ws89{word-spacing:3.765863px;}
.ws8{word-spacing:3.873485px;}
.wsb8{word-spacing:4.112572px;}
.ws3b{word-spacing:4.119883px;}
.ws3d{word-spacing:4.124134px;}
.ws7a{word-spacing:4.124516px;}
.ws4a{word-spacing:4.184292px;}
.wsa7{word-spacing:4.256033px;}
.ws9e{word-spacing:4.483170px;}
.ws34{word-spacing:4.662497px;}
.ws47{word-spacing:4.782048px;}
.ws3a{word-spacing:4.841824px;}
.ws12{word-spacing:4.901599px;}
.wsa5{word-spacing:5.021150px;}
.wsb9{word-spacing:5.212445px;}
.wsc{word-spacing:5.487437px;}
.ws23{word-spacing:5.678682px;}
.wsa6{word-spacing:5.690651px;}
.ws5c{word-spacing:5.738458px;}
.ws15{word-spacing:5.798233px;}
.ws48{word-spacing:5.858009px;}
.ws7f{word-spacing:5.917784px;}
.wsb3{word-spacing:6.121037px;}
.ws2b{word-spacing:6.156887px;}
.ws7b{word-spacing:6.216662px;}
.ws96{word-spacing:6.312868px;}
.ws35{word-spacing:6.515540px;}
.ws5a{word-spacing:6.575316px;}
.ws84{word-spacing:6.814418px;}
.ws71{word-spacing:6.933987px;}
.ws9d{word-spacing:6.993745px;}
.ws83{word-spacing:7.352399px;}
.ws85{word-spacing:7.591501px;}
.ws78{word-spacing:7.830604px;}
.ws2f{word-spacing:8.009930px;}
.ws49{word-spacing:8.189257px;}
.wsa0{word-spacing:8.368584px;}
.ws1c{word-spacing:11.902572px;}
.ws6{word-spacing:11.907329px;}
.ws90{word-spacing:12.373549px;}
.ws44{word-spacing:13.987490px;}
.ws0{word-spacing:14.156916px;}
.ws28{word-spacing:14.884124px;}
.ws7e{word-spacing:15.661207px;}
.ws56{word-spacing:16.975178px;}
.ws64{word-spacing:17.334924px;}
.wsa1{word-spacing:18.052231px;}
.ws8a{word-spacing:18.649987px;}
.ws76{word-spacing:18.873745px;}
.ws75{word-spacing:18.875539px;}
.ws77{word-spacing:18.877453px;}
.ws3c{word-spacing:19.008641px;}
.wsa2{word-spacing:20.742133px;}
.ws9f{word-spacing:23.249364px;}
.ws10{word-spacing:25.351171px;}
.ws11{word-spacing:29.828024px;}
.ws9b{word-spacing:46.637688px;}
.ws6d{word-spacing:55.027307px;}
.ws69{word-spacing:59.775750px;}
.ws92{word-spacing:63.396495px;}
.ws73{word-spacing:72.977872px;}
.ws68{word-spacing:83.112203px;}
.ws42{word-spacing:89.737139px;}
.ws6f{word-spacing:95.019532px;}
.ws6e{word-spacing:105.587885px;}
.ws99{word-spacing:115.955362px;}
.ws6c{word-spacing:156.421183px;}
.ws6b{word-spacing:197.774090px;}
.ws6a{word-spacing:197.786002px;}
.ws98{word-spacing:296.954826px;}
.ws40{word-spacing:342.747161px;}
.ws41{word-spacing:428.817098px;}
.ws95{word-spacing:485.905016px;}
.ws43{word-spacing:1130.502726px;}
._3{margin-left:-9.348948px;}
._2{margin-left:-8.129520px;}
._7{margin-left:-5.971622px;}
._8{margin-left:-4.375640px;}
._1{margin-left:-3.322020px;}
._0{margin-left:-2.044320px;}
._4{margin-left:-1.016190px;}
._10{width:1.617743px;}
._15{width:3.072748px;}
._44{width:5.609727px;}
._5{width:7.422803px;}
._51{width:10.962959px;}
._17{width:12.947450px;}
._b{width:14.226593px;}
._9{width:16.113998px;}
._e{width:17.441011px;}
._d{width:19.630296px;}
._11{width:20.772116px;}
._4e{width:22.306873px;}
._a{width:23.727340px;}
._50{width:24.758841px;}
._6{width:25.817510px;}
._4f{width:27.024328px;}
._c{width:29.887800px;}
._16{width:30.912937px;}
._52{width:34.646155px;}
._4d{width:36.366130px;}
._12{width:37.941497px;}
._13{width:39.535004px;}
._4c{width:81.072864px;}
._34{width:94.397864px;}
._29{width:96.054983px;}
._1c{width:99.084283px;}
._1b{width:101.714416px;}
._37{width:105.493333px;}
._3d{width:108.014770px;}
._22{width:110.317388px;}
._46{width:113.548287px;}
._4a{width:131.100230px;}
._47{width:140.783846px;}
._3c{width:156.577624px;}
._48{width:158.429648px;}
._35{width:170.387696px;}
._1f{width:171.759629px;}
._45{width:173.301854px;}
._43{width:179.255498px;}
._2b{width:180.379303px;}
._1e{width:187.169828px;}
._33{width:188.317523px;}
._2e{width:194.743723px;}
._2d{width:199.701724px;}
._3f{width:229.464376px;}
._25{width:234.202423px;}
._1d{width:259.401333px;}
._23{width:278.746277px;}
._38{width:283.452483px;}
._32{width:298.926571px;}
._21{width:308.248870px;}
._27{width:312.986917px;}
._18{width:314.563907px;}
._39{width:317.935314px;}
._4b{width:322.058668px;}
._31{width:325.514824px;}
._2c{width:331.277261px;}
._26{width:341.391263px;}
._49{width:350.535890px;}
._2a{width:356.777531px;}
._41{width:361.786804px;}
._1a{width:382.230056px;}
._40{width:449.441964px;}
._3a{width:453.004544px;}
._3e{width:459.023987px;}
._3b{width:461.086225px;}
._36{width:477.620187px;}
._2f{width:491.452306px;}
._24{width:510.102340px;}
._42{width:518.088380px;}
._30{width:523.444288px;}
._19{width:550.032541px;}
._20{width:560.110722px;}
._28{width:563.231027px;}
._f{width:776.057285px;}
._14{width:1833.709571px;}
.fc8{color:rgb(192,80,70);}
.fc7{color:rgb(32,88,103);}
.fc6{color:transparent;}
.fc4{color:rgb(146,57,49);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(63,63,63);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(62,62,62);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:20.645280px;}
.fs16{font-size:20.702628px;}
.fs10{font-size:21.950595px;}
.fs15{font-size:22.365720px;}
.fs14{font-size:22.423068px;}
.fs11{font-size:29.267460px;}
.fs12{font-size:29.348759px;}
.fsb{font-size:30.739995px;}
.fsc{font-size:30.818816px;}
.fs13{font-size:31.706415px;}
.fsf{font-size:31.787714px;}
.fs18{font-size:32.688360px;}
.fs19{font-size:32.745708px;}
.fsa{font-size:35.469225px;}
.fs9{font-size:35.548046px;}
.fs6{font-size:35.865600px;}
.fsd{font-size:36.584325px;}
.fse{font-size:36.665624px;}
.fs1{font-size:47.820600px;}
.fs0{font-size:51.108000px;}
.fs7{font-size:53.798400px;}
.fs5{font-size:54.396000px;}
.fs8{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:77.708400px;}
.fs3{font-size:101.619000px;}
.y0{bottom:0.000000px;}
.y15f{bottom:21.921273px;}
.y11e{bottom:22.165002px;}
.ydd{bottom:22.357087px;}
.y12d{bottom:28.903392px;}
.y15e{bottom:30.179385px;}
.y12c{bottom:35.111313px;}
.y61{bottom:37.498853px;}
.y15d{bottom:39.082662px;}
.y130{bottom:41.290560px;}
.y60{bottom:47.055839px;}
.y12f{bottom:47.484144px;}
.y75{bottom:52.198876px;}
.y6f{bottom:52.336812px;}
.y12e{bottom:53.692065px;}
.ya7{bottom:57.030898px;}
.yd6{bottom:58.758491px;}
.ya8{bottom:59.571476px;}
.yd5{bottom:68.615934px;}
.ya6{bottom:69.266322px;}
.ye0{bottom:74.632023px;}
.y68{bottom:75.845026px;}
.y74{bottom:76.731757px;}
.y71{bottom:76.830282px;}
.y70{bottom:76.889398px;}
.y69{bottom:76.948513px;}
.ya5{bottom:81.379798px;}
.y99{bottom:89.347052px;}
.y155{bottom:90.839232px;}
.yd8{bottom:92.883536px;}
.y24{bottom:93.766500px;}
.y51{bottom:94.926000px;}
.y98{bottom:99.200430px;}
.y5a{bottom:99.510881px;}
.y154{bottom:100.473696px;}
.yd7{bottom:102.736914px;}
.y77{bottom:103.585901px;}
.y59{bottom:108.354541px;}
.y23{bottom:108.711000px;}
.y50{bottom:112.858500px;}
.y76{bottom:113.146828px;}
.ya2{bottom:125.378547px;}
.y123{bottom:130.225838px;}
.y94{bottom:130.791000px;}
.y11f{bottom:130.856666px;}
.y122{bottom:136.430892px;}
.y22{bottom:138.007500px;}
.y126{bottom:142.395084px;}
.y66{bottom:142.980387px;}
.y6a{bottom:143.059208px;}
.y6e{bottom:143.587305px;}
.yd4{bottom:143.833306px;}
.y125{bottom:148.588668px;}
.y4f{bottom:148.723500px;}
.y19d{bottom:149.022000px;}
.y16f{bottom:149.023500px;}
.y124{bottom:154.793722px;}
.y21{bottom:157.515000px;}
.y19c{bottom:163.966500px;}
.y5f{bottom:166.642301px;}
.y93{bottom:166.657500px;}
.y6d{bottom:170.725203px;}
.y5e{bottom:176.203228px;}
.y19b{bottom:178.911000px;}
.y6c{bottom:180.278248px;}
.y65{bottom:183.336483px;}
.y72{bottom:183.951283px;}
.y73{bottom:184.242919px;}
.y92{bottom:184.590000px;}
.ydf{bottom:185.669514px;}
.y4e{bottom:189.570000px;}
.y120{bottom:193.675666px;}
.y19a{bottom:193.854000px;}
.ydc{bottom:201.685319px;}
.y16e{bottom:201.792000px;}
.y91{bottom:202.522500px;}
.y20{bottom:202.602000px;}
.y67{bottom:204.602254px;}
.y147{bottom:205.907994px;}
.ya4{bottom:206.172996px;}
.y64{bottom:206.769818px;}
.y6b{bottom:207.274269px;}
.y4d{bottom:207.504000px;}
.ya0{bottom:207.798966px;}
.y199{bottom:208.798500px;}
.ydb{bottom:211.522437px;}
.y146{bottom:212.101578px;}
.ya3{bottom:216.026374px;}
.y14b{bottom:218.971868px;}
.y16d{bottom:219.724500px;}
.y90{bottom:220.455000px;}
.y1f{bottom:220.534500px;}
.y198{bottom:223.743000px;}
.y14a{bottom:225.165452px;}
.y4c{bottom:225.436500px;}
.y58{bottom:233.805249px;}
.ya1{bottom:236.147753px;}
.y16c{bottom:237.657000px;}
.y56{bottom:237.856623px;}
.y8f{bottom:238.387500px;}
.y1e{bottom:238.468500px;}
.ye7{bottom:238.686000px;}
.y5b{bottom:242.648909px;}
.y57{bottom:243.358294px;}
.y4b{bottom:243.369000px;}
.ybb{bottom:245.789755px;}
.y55{bottom:247.417550px;}
.y105{bottom:248.613000px;}
.y121{bottom:251.258792px;}
.y63{bottom:251.595036px;}
.y197{bottom:253.630500px;}
.y16b{bottom:255.589500px;}
.y9d{bottom:255.992717px;}
.y15c{bottom:256.116168px;}
.y1d{bottom:256.401000px;}
.y11c{bottom:257.337680px;}
.ybc{bottom:260.439745px;}
.y4a{bottom:261.301500px;}
.y15b{bottom:262.309752px;}
.y104{bottom:263.557500px;}
.y9c{bottom:265.846095px;}
.yda{bottom:266.106250px;}
.y8e{bottom:267.523500px;}
.y15a{bottom:268.503336px;}
.y196{bottom:268.575000px;}
.y16a{bottom:273.522000px;}
.y1c{bottom:274.333500px;}
.ybd{bottom:275.788902px;}
.yd9{bottom:275.967758px;}
.y62{bottom:277.329929px;}
.y49{bottom:279.234000px;}
.y195{bottom:283.518000px;}
.y8d{bottom:285.456000px;}
.y11a{bottom:287.194500px;}
.ye6{bottom:288.933000px;}
.y103{bottom:289.530000px;}
.y169{bottom:291.454500px;}
.y1b{bottom:292.266000px;}
.y7a{bottom:292.345234px;}
.yba{bottom:293.487585px;}
.y9f{bottom:295.763943px;}
.y48{bottom:297.166500px;}
.y194{bottom:298.462500px;}
.y145{bottom:298.679854px;}
.y151{bottom:299.339356px;}
.y5d{bottom:300.936669px;}
.y119{bottom:302.139000px;}
.yb9{bottom:303.349093px;}
.y8c{bottom:303.390000px;}
.y79{bottom:304.428417px;}
.y54{bottom:305.019571px;}
.y9e{bottom:305.617321px;}
.ye5{bottom:306.865500px;}
.y157{bottom:308.578118px;}
.y168{bottom:309.388500px;}
.y1a{bottom:310.198500px;}
.y5c{bottom:310.489714px;}
.y193{bottom:313.405500px;}
.y53{bottom:314.572616px;}
.y47{bottom:315.100500px;}
.y102{bottom:315.502500px;}
.y78{bottom:315.951974px;}
.y118{bottom:317.083500px;}
.y158{bottom:318.694306px;}
.y149{bottom:320.862060px;}
.y8b{bottom:321.322500px;}
.y14c{bottom:322.553826px;}
.ye4{bottom:324.799500px;}
.y150{bottom:327.055644px;}
.y167{bottom:327.321000px;}
.y148{bottom:327.428406px;}
.y19{bottom:328.132500px;}
.y192{bottom:328.350000px;}
.y101{bottom:330.445500px;}
.yb0{bottom:330.746688px;}
.y117{bottom:332.026500px;}
.yac{bottom:332.958007px;}
.y46{bottom:333.033000px;}
.y134{bottom:333.839912px;}
.y144{bottom:335.944584px;}
.y133{bottom:336.649964px;}
.yaf{bottom:338.795239px;}
.y8a{bottom:339.255000px;}
.y153{bottom:340.027762px;}
.y11d{bottom:340.629916px;}
.yab{bottom:341.006558px;}
.ye3{bottom:342.732000px;}
.y191{bottom:343.294500px;}
.y166{bottom:345.253500px;}
.y100{bottom:345.390000px;}
.y18{bottom:346.065000px;}
.y116{bottom:346.971000px;}
.y45{bottom:350.965500px;}
.y142{bottom:352.047902px;}
.y138{bottom:352.145394px;}
.y135{bottom:352.242886px;}
.y159{bottom:354.152574px;}
.y89{bottom:357.187500px;}
.yae{bottom:357.469504px;}
.y190{bottom:358.237500px;}
.y141{bottom:358.241486px;}
.y137{bottom:358.338978px;}
.yaa{bottom:359.705213px;}
.yff{bottom:360.334500px;}
.ye2{bottom:360.664500px;}
.y115{bottom:361.914000px;}
.y165{bottom:363.186000px;}
.y140{bottom:364.429336px;}
.y136{bottom:364.544032px;}
.yad{bottom:367.306623px;}
.y44{bottom:368.898000px;}
.ya9{bottom:369.542332px;}
.y13a{bottom:370.439406px;}
.y18f{bottom:373.182000px;}
.y152{bottom:374.998572px;}
.y88{bottom:375.120000px;}
.y139{bottom:376.650194px;}
.y143{bottom:376.661664px;}
.y14e{bottom:378.858092px;}
.y14f{bottom:378.881032px;}
.y164{bottom:381.118500px;}
.y17{bottom:382.228500px;}
.y14d{bottom:385.045942px;}
.yfe{bottom:386.307000px;}
.y43{bottom:386.830500px;}
.y114{bottom:387.888000px;}
.y18e{bottom:388.126500px;}
.y132{bottom:388.790766px;}
.y13f{bottom:389.410124px;}
.yde{bottom:392.330301px;}
.y87{bottom:393.054000px;}
.y13e{bottom:395.603708px;}
.y12b{bottom:396.073962px;}
.ycb{bottom:396.752940px;}
.ybf{bottom:396.964316px;}
.yc3{bottom:397.045614px;}
.y128{bottom:398.912688px;}
.y163{bottom:399.052500px;}
.yfd{bottom:401.250000px;}
.y12a{bottom:402.267546px;}
.y18d{bottom:403.069500px;}
.y42{bottom:404.764500px;}
.ybe{bottom:405.029127px;}
.yc2{bottom:405.086036px;}
.y127{bottom:405.106272px;}
.yca{bottom:406.614448px;}
.y129{bottom:408.478334px;}
.ye1{bottom:409.902000px;}
.y86{bottom:410.986500px;}
.y113{bottom:413.620500px;}
.yfc{bottom:416.194500px;}
.y162{bottom:416.985000px;}
.y18c{bottom:418.014000px;}
.y131{bottom:418.084124px;}
.yb4{bottom:421.231918px;}
.y41{bottom:422.697000px;}
.y85{bottom:428.919000px;}
.yb3{bottom:429.280470px;}
.y13d{bottom:430.081326px;}
.y13c{bottom:430.471292px;}
.yfb{bottom:431.139000px;}
.y18b{bottom:432.958500px;}
.y95{bottom:434.260500px;}
.y161{bottom:434.917500px;}
.y13b{bottom:436.676346px;}
.ycd{bottom:437.142035px;}
.y40{bottom:440.629500px;}
.yc9{bottom:440.800467px;}
.yc5{bottom:445.434482px;}
.yb6{bottom:445.922273px;}
.yfa{bottom:446.082000px;}
.y84{bottom:446.851500px;}
.ycc{bottom:446.979153px;}
.y18a{bottom:447.901500px;}
.yc8{bottom:450.661975px;}
.y112{bottom:451.902000px;}
.yc4{bottom:453.507423px;}
.yb5{bottom:453.970824px;}
.y16{bottom:454.585500px;}
.y189{bottom:462.846000px;}
.y83{bottom:464.784000px;}
.yc7{bottom:469.702084px;}
.y111{bottom:469.834500px;}
.yb8{bottom:470.173615px;}
.yf9{bottom:472.054500px;}
.y3f{bottom:476.793000px;}
.yd1{bottom:477.506740px;}
.yc6{bottom:477.766895px;}
.y188{bottom:477.790500px;}
.y156{bottom:477.995580px;}
.yb7{bottom:478.238426px;}
.y15{bottom:481.654500px;}
.y82{bottom:482.716500px;}
.y160{bottom:484.995000px;}
.yf8{bottom:486.999000px;}
.yd0{bottom:487.343858px;}
.y110{bottom:487.768500px;}
.y187{bottom:492.733500px;}
.yb2{bottom:496.189135px;}
.yc1{bottom:496.530589px;}
.y14{bottom:497.793000px;}
.y81{bottom:500.650500px;}
.yf7{bottom:501.943500px;}
.y10f{bottom:505.701000px;}
.yb1{bottom:506.018124px;}
.yc0{bottom:506.392097px;}
.y186{bottom:507.678000px;}
.y11b{bottom:509.353500px;}
.yf6{bottom:516.886500px;}
.y80{bottom:518.583000px;}
.y185{bottom:522.622500px;}
.y10e{bottom:523.633500px;}
.yd3{bottom:523.643639px;}
.y3e{bottom:526.606500px;}
.ycf{bottom:527.854901px;}
.y97{bottom:531.147490px;}
.y9b{bottom:531.163750px;}
.yf5{bottom:531.831000px;}
.y13{bottom:531.865500px;}
.yd2{bottom:533.480757px;}
.y7f{bottom:536.515500px;}
.y184{bottom:537.565500px;}
.yce{bottom:537.692019px;}
.y96{bottom:540.976479px;}
.y9a{bottom:541.000868px;}
.y10d{bottom:541.566000px;}
.y3d{bottom:544.539000px;}
.yf4{bottom:546.774000px;}
.y12{bottom:548.005500px;}
.y183{bottom:552.510000px;}
.y7e{bottom:554.448000px;}
.y10c{bottom:559.498500px;}
.y3c{bottom:562.473000px;}
.y11{bottom:564.144000px;}
.y182{bottom:567.453000px;}
.yf3{bottom:572.746500px;}
.y10b{bottom:577.431000px;}
.y10{bottom:580.284000px;}
.y3b{bottom:580.405500px;}
.y181{bottom:582.397500px;}
.y7d{bottom:583.584000px;}
.yf2{bottom:587.691000px;}
.y10a{bottom:595.365000px;}
.yf{bottom:596.424000px;}
.y180{bottom:597.342000px;}
.y3a{bottom:598.338000px;}
.y7c{bottom:601.516500px;}
.yf1{bottom:602.635500px;}
.y17f{bottom:612.285000px;}
.ye{bottom:612.562500px;}
.y109{bottom:613.297500px;}
.y39{bottom:616.270500px;}
.yf0{bottom:617.578500px;}
.y17e{bottom:627.229500px;}
.yd{bottom:628.702500px;}
.y108{bottom:631.230000px;}
.yef{bottom:632.523000px;}
.y38{bottom:634.203000px;}
.y17d{bottom:642.174000px;}
.yc{bottom:644.842500px;}
.y7b{bottom:645.957000px;}
.y37{bottom:652.135500px;}
.y17c{bottom:657.117000px;}
.yee{bottom:658.495500px;}
.yb{bottom:660.981000px;}
.y107{bottom:667.095000px;}
.y36{bottom:670.069500px;}
.y52{bottom:670.315500px;}
.y17b{bottom:672.061500px;}
.yed{bottom:681.790500px;}
.y17a{bottom:687.006000px;}
.ya{bottom:687.282000px;}
.y35{bottom:688.002000px;}
.y179{bottom:701.949000px;}
.y106{bottom:702.247500px;}
.y34{bottom:705.934500px;}
.y178{bottom:716.893500px;}
.yec{bottom:720.181500px;}
.y33{bottom:723.867000px;}
.y177{bottom:731.838000px;}
.yeb{bottom:738.114000px;}
.y176{bottom:746.781000px;}
.y9{bottom:750.754500px;}
.yea{bottom:756.046500px;}
.y32{bottom:760.032000px;}
.y175{bottom:761.725500px;}
.y8{bottom:770.325000px;}
.ye9{bottom:773.979000px;}
.y174{bottom:776.668500px;}
.y173{bottom:791.613000px;}
.ye8{bottom:791.911500px;}
.y7{bottom:804.387000px;}
.y172{bottom:806.557500px;}
.y31{bottom:809.845500px;}
.y171{bottom:821.500500px;}
.y30{bottom:827.778000px;}
.y6{bottom:834.873000px;}
.y2f{bottom:845.710500px;}
.y170{bottom:854.676000px;}
.y2e{bottom:863.643000px;}
.y5{bottom:871.783500px;}
.y2d{bottom:881.575500px;}
.y4{bottom:889.716000px;}
.y2c{bottom:899.508000px;}
.y2b{bottom:917.442000px;}
.y2a{bottom:935.374500px;}
.y3{bottom:940.890000px;}
.y29{bottom:953.307000px;}
.y2{bottom:955.071000px;}
.y28{bottom:971.239500px;}
.y27{bottom:989.172000px;}
.y26{bottom:1007.104500px;}
.y1{bottom:1036.024500px;}
.y25{bottom:1036.993500px;}
.hd{height:18.650112px;}
.h2a{height:21.532382px;}
.h29{height:21.592194px;}
.h25{height:23.326747px;}
.h24{height:23.386559px;}
.h7{height:24.496205px;}
.h1e{height:30.525046px;}
.h20{height:30.609838px;}
.h18{height:32.060854px;}
.h19{height:32.143061px;}
.h3{height:32.900573px;}
.h21{height:33.068800px;}
.h1d{height:33.153592px;}
.h32{height:33.187496px;}
.h22{height:33.426599px;}
.h30{height:34.092938px;}
.h31{height:34.152750px;}
.h2b{height:35.043571px;}
.ha{height:36.744307px;}
.h16{height:36.924017px;}
.h11{height:36.993293px;}
.h15{height:37.006071px;}
.h9{height:37.013299px;}
.h10{height:37.075501px;}
.h26{height:37.207407px;}
.h8{height:37.228493px;}
.h2{height:37.257732px;}
.h1b{height:38.156308px;}
.h1c{height:38.241100px;}
.h17{height:39.433742px;}
.h12{height:39.944567px;}
.h14{height:40.070680px;}
.h13{height:40.322905px;}
.he{height:40.826735px;}
.hc{height:41.125613px;}
.hb{height:41.364715px;}
.h2c{height:44.746852px;}
.h2d{height:46.306718px;}
.h2f{height:46.398475px;}
.h2e{height:47.797766px;}
.h4{height:49.351066px;}
.h27{height:50.970937px;}
.h28{height:53.723643px;}
.h6{height:65.636448px;}
.h5{height:69.913872px;}
.h1f{height:73.047655px;}
.hf{height:351.736481px;}
.h23{height:512.691120px;}
.h1a{height:587.788155px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:496.569150px;}
.w4{width:699.358860px;}
.w3{width:699.370346px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x58{left:28.028835px;}
.x28{left:40.651673px;}
.x59{left:48.358701px;}
.x17{left:52.612684px;}
.xb{left:55.275000px;}
.xc{left:58.368000px;}
.xf{left:61.725000px;}
.xe{left:63.754500px;}
.x4d{left:65.059125px;}
.x30{left:66.839784px;}
.x18{left:68.770886px;}
.x4e{left:69.794762px;}
.x6{left:71.019000px;}
.xd{left:73.209000px;}
.x4c{left:75.526307px;}
.x10{left:79.657500px;}
.x85{left:82.647000px;}
.x57{left:84.679500px;}
.x64{left:91.814148px;}
.x7b{left:93.580466px;}
.x7c{left:98.036406px;}
.x5b{left:101.460082px;}
.x2d{left:105.406655px;}
.x5a{left:109.351166px;}
.x4{left:115.413000px;}
.x29{left:117.458309px;}
.x2f{left:124.930493px;}
.x6c{left:127.513278px;}
.x20{left:132.063748px;}
.x2e{left:136.934855px;}
.x6b{left:137.979288px;}
.x8{left:140.989500px;}
.xa{left:143.550000px;}
.x4a{left:145.768211px;}
.x4b{left:150.483524px;}
.x5c{left:152.872564px;}
.x4f{left:154.792344px;}
.x12{left:156.682500px;}
.x53{left:158.515815px;}
.x14{left:163.670768px;}
.x26{left:165.641281px;}
.x51{left:166.946470px;}
.x52{left:168.913893px;}
.x50{left:171.458537px;}
.x54{left:174.182036px;}
.x1e{left:177.172720px;}
.x13{left:178.630899px;}
.x34{left:179.803500px;}
.x33{left:183.136500px;}
.x15{left:184.164098px;}
.x16{left:188.026303px;}
.x63{left:190.383890px;}
.x5d{left:200.431260px;}
.x35{left:201.921000px;}
.x1f{left:205.658449px;}
.x5f{left:209.538122px;}
.x7{left:219.993000px;}
.x66{left:221.650020px;}
.x65{left:224.947530px;}
.x62{left:237.879504px;}
.x60{left:241.320384px;}
.x61{left:244.187784px;}
.x11{left:249.177000px;}
.x27{left:253.707425px;}
.x22{left:258.137137px;}
.x1{left:262.809000px;}
.x2{left:268.512000px;}
.x43{left:270.805304px;}
.x45{left:272.797117px;}
.x23{left:274.035232px;}
.x40{left:275.414928px;}
.x41{left:277.918922px;}
.x44{left:279.382295px;}
.x2b{left:280.388165px;}
.x42{left:283.609817px;}
.x2a{left:291.714671px;}
.x1d{left:293.291081px;}
.x19{left:294.749260px;}
.x31{left:296.719772px;}
.x1c{left:301.984982px;}
.x32{left:303.955494px;}
.x6a{left:308.188152px;}
.x69{left:310.155188px;}
.x67{left:319.944492px;}
.x68{left:326.826252px;}
.x6f{left:330.685772px;}
.x5e{left:335.382574px;}
.x6e{left:337.854272px;}
.x5{left:343.437000px;}
.x6d{left:351.027108px;}
.x70{left:364.503888px;}
.x2c{left:373.687990px;}
.x24{left:374.893944px;}
.x1a{left:388.175198px;}
.x78{left:391.560674px;}
.x1b{left:398.540094px;}
.x73{left:400.506962px;}
.x72{left:407.101982px;}
.x9{left:411.499500px;}
.x7d{left:415.113498px;}
.x83{left:421.605292px;}
.x82{left:422.608882px;}
.x21{left:427.246520px;}
.x25{left:428.491884px;}
.x81{left:430.350862px;}
.x74{left:439.727260px;}
.x71{left:453.221244px;}
.x80{left:494.769870px;}
.x75{left:511.114050px;}
.x76{left:515.271780px;}
.x55{left:525.513504px;}
.x36{left:527.806122px;}
.x3c{left:538.480615px;}
.x7a{left:540.705618px;}
.x3e{left:542.041489px;}
.x77{left:546.996694px;}
.x39{left:548.016929px;}
.x49{left:549.618509px;}
.x46{left:554.228134px;}
.x47{left:556.203688px;}
.x38{left:558.439397px;}
.x3f{left:560.593807px;}
.x3d{left:561.918972px;}
.x37{left:563.927045px;}
.x48{left:565.065224px;}
.x79{left:583.590452px;}
.x3{left:585.039000px;}
.x3b{left:586.097146px;}
.x3a{left:597.202521px;}
.x7f{left:600.651482px;}
.x7e{left:606.242912px;}
.x84{left:621.296762px;}
.x56{left:680.118861px;}
@media print{
.v2{vertical-align:-25.077333pt;}
.v3{vertical-align:-15.429333pt;}
.v7{vertical-align:-6.378667pt;}
.v5{vertical-align:-4.046859pt;}
.vc{vertical-align:-1.325376pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.550281pt;}
.v8{vertical-align:12.285198pt;}
.va{vertical-align:20.635085pt;}
.vb{vertical-align:22.021632pt;}
.vd{vertical-align:23.347008pt;}
.v1{vertical-align:25.077333pt;}
.v9{vertical-align:26.966297pt;}
.v6{vertical-align:37.722504pt;}
.ls10{letter-spacing:-0.375536pt;}
.ls11{letter-spacing:-0.057171pt;}
.ls12{letter-spacing:-0.013239pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000087pt;}
.ls3{letter-spacing:0.000853pt;}
.ls0{letter-spacing:0.000868pt;}
.ls4{letter-spacing:0.000922pt;}
.lsf{letter-spacing:0.002347pt;}
.ls2a{letter-spacing:0.004959pt;}
.ls2d{letter-spacing:0.477135pt;}
.ls2f{letter-spacing:0.513838pt;}
.ls2e{letter-spacing:0.528111pt;}
.ls13{letter-spacing:0.713981pt;}
.ls2{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.659712pt;}
.ls1d{letter-spacing:6.023867pt;}
.ls28{letter-spacing:8.146533pt;}
.ls26{letter-spacing:8.573200pt;}
.ls20{letter-spacing:9.207867pt;}
.lsa{letter-spacing:10.626197pt;}
.ls1f{letter-spacing:10.746754pt;}
.ls1b{letter-spacing:11.805802pt;}
.ls24{letter-spacing:11.807059pt;}
.ls25{letter-spacing:11.808087pt;}
.lsb{letter-spacing:12.273923pt;}
.ls29{letter-spacing:12.327057pt;}
.ls1a{letter-spacing:12.868393pt;}
.ls1c{letter-spacing:12.869421pt;}
.ls27{letter-spacing:13.296087pt;}
.ls21{letter-spacing:13.508836pt;}
.ls1e{letter-spacing:13.802364pt;}
.ls22{letter-spacing:13.930754pt;}
.lse{letter-spacing:15.090018pt;}
.ls5{letter-spacing:15.302554pt;}
.lsd{letter-spacing:15.461955pt;}
.lsc{letter-spacing:15.515089pt;}
.ls6{letter-spacing:18.600269pt;}
.ls23{letter-spacing:63.760868pt;}
.ls2b{letter-spacing:66.417067pt;}
.ls14{letter-spacing:88.717417pt;}
.ls15{letter-spacing:88.720087pt;}
.ls16{letter-spacing:89.901417pt;}
.ls17{letter-spacing:98.074754pt;}
.ls19{letter-spacing:180.032087pt;}
.ls2c{letter-spacing:234.511059pt;}
.ls18{letter-spacing:251.970750pt;}
.ls9{letter-spacing:689.423733pt;}
.ws5{word-spacing:-46.611328pt;}
.ws1b{word-spacing:-14.771215pt;}
.wsf{word-spacing:-13.294182pt;}
.ws46{word-spacing:-13.283467pt;}
.ws4{word-spacing:-12.088000pt;}
.wse{word-spacing:-11.955200pt;}
.ws3{word-spacing:-11.817002pt;}
.ws2{word-spacing:-10.626800pt;}
.ws4b{word-spacing:-9.060483pt;}
.ws4c{word-spacing:-9.040393pt;}
.ws3f{word-spacing:-8.784317pt;}
.ws3e{word-spacing:-8.764840pt;}
.ws9c{word-spacing:-8.091828pt;}
.ws4d{word-spacing:-7.855097pt;}
.ws51{word-spacing:-7.835007pt;}
.ws50{word-spacing:-7.252404pt;}
.ws4f{word-spacing:-7.232315pt;}
.ws93{word-spacing:-5.526818pt;}
.ws4e{word-spacing:-5.424236pt;}
.ws97{word-spacing:-5.115849pt;}
.ws94{word-spacing:-5.101678pt;}
.ws58{word-spacing:-2.709827pt;}
.wsa{word-spacing:-2.391040pt;}
.ws91{word-spacing:-2.284756pt;}
.ws2a{word-spacing:-2.231622pt;}
.wsbb{word-spacing:-2.210374pt;}
.ws57{word-spacing:-2.178489pt;}
.ws25{word-spacing:-2.072221pt;}
.ws2d{word-spacing:-2.019087pt;}
.wsba{word-spacing:-1.912824pt;}
.ws60{word-spacing:-1.806551pt;}
.wsb7{word-spacing:-1.785302pt;}
.wsb0{word-spacing:-1.700288pt;}
.wsb2{word-spacing:-1.615274pt;}
.wsa8{word-spacing:-1.487752pt;}
.ws37{word-spacing:-1.487748pt;}
.wsad{word-spacing:-1.445245pt;}
.ws8b{word-spacing:-1.381481pt;}
.wsab{word-spacing:-1.360230pt;}
.ws52{word-spacing:-1.115811pt;}
.ws1e{word-spacing:-1.009543pt;}
.ws1f{word-spacing:-0.956410pt;}
.ws45{word-spacing:-0.797008pt;}
.ws33{word-spacing:-0.743874pt;}
.ws8f{word-spacing:-0.637606pt;}
.ws9a{word-spacing:-0.575009pt;}
.ws8d{word-spacing:-0.531339pt;}
.ws59{word-spacing:-0.478205pt;}
.ws36{word-spacing:-0.371937pt;}
.ws1d{word-spacing:-0.318803pt;}
.ws81{word-spacing:-0.265669pt;}
.wsb5{word-spacing:-0.255043pt;}
.ws31{word-spacing:-0.212535pt;}
.ws30{word-spacing:-0.159402pt;}
.ws39{word-spacing:-0.053134pt;}
.ws72{word-spacing:-0.042507pt;}
.ws8e{word-spacing:-0.031881pt;}
.ws1{word-spacing:0.000000pt;}
.ws74{word-spacing:0.001236pt;}
.ws70{word-spacing:0.002813pt;}
.wsbc{word-spacing:0.042507pt;}
.ws61{word-spacing:0.053134pt;}
.ws53{word-spacing:0.106268pt;}
.ws5b{word-spacing:0.159402pt;}
.ws21{word-spacing:0.265669pt;}
.ws22{word-spacing:0.318803pt;}
.wsb{word-spacing:0.334746pt;}
.ws18{word-spacing:0.371937pt;}
.ws29{word-spacing:0.425071pt;}
.ws87{word-spacing:0.478205pt;}
.ws7d{word-spacing:0.690740pt;}
.ws5f{word-spacing:0.797008pt;}
.ws79{word-spacing:0.850142pt;}
.wsac{word-spacing:0.850144pt;}
.ws5e{word-spacing:0.903276pt;}
.ws24{word-spacing:1.009543pt;}
.ws66{word-spacing:1.115811pt;}
.wsb4{word-spacing:1.147694pt;}
.ws7c{word-spacing:1.168945pt;}
.wsaa{word-spacing:1.232709pt;}
.ws13{word-spacing:1.328347pt;}
.ws80{word-spacing:1.381481pt;}
.ws67{word-spacing:1.540882pt;}
.ws7{word-spacing:1.578086pt;}
.ws32{word-spacing:1.594016pt;}
.ws16{word-spacing:1.647150pt;}
.ws8c{word-spacing:1.700284pt;}
.ws27{word-spacing:1.753418pt;}
.ws82{word-spacing:1.806551pt;}
.wsb1{word-spacing:1.827810pt;}
.ws55{word-spacing:1.859685pt;}
.ws9{word-spacing:1.865011pt;}
.ws20{word-spacing:1.912819pt;}
.ws19{word-spacing:1.965953pt;}
.ws1a{word-spacing:2.019087pt;}
.ws65{word-spacing:2.178489pt;}
.ws26{word-spacing:2.231622pt;}
.wsb6{word-spacing:2.295389pt;}
.ws17{word-spacing:2.337890pt;}
.ws86{word-spacing:2.391024pt;}
.ws63{word-spacing:2.444158pt;}
.wsa3{word-spacing:2.497292pt;}
.wsae{word-spacing:2.550432pt;}
.wsaf{word-spacing:2.571629pt;}
.ws88{word-spacing:2.603559pt;}
.ws62{word-spacing:2.709827pt;}
.wsa4{word-spacing:2.762961pt;}
.wsa9{word-spacing:2.762968pt;}
.ws2e{word-spacing:2.816095pt;}
.ws14{word-spacing:2.869229pt;}
.ws5d{word-spacing:3.028630pt;}
.wsd{word-spacing:3.108352pt;}
.ws38{word-spacing:3.134898pt;}
.ws54{word-spacing:3.188032pt;}
.ws2c{word-spacing:3.241166pt;}
.ws89{word-spacing:3.347434pt;}
.ws8{word-spacing:3.443098pt;}
.wsb8{word-spacing:3.655619pt;}
.ws3b{word-spacing:3.662118pt;}
.ws3d{word-spacing:3.665897pt;}
.ws7a{word-spacing:3.666237pt;}
.ws4a{word-spacing:3.719371pt;}
.wsa7{word-spacing:3.783141pt;}
.ws9e{word-spacing:3.985040pt;}
.ws34{word-spacing:4.144442pt;}
.ws47{word-spacing:4.250709pt;}
.ws3a{word-spacing:4.303843pt;}
.ws12{word-spacing:4.356977pt;}
.wsa5{word-spacing:4.463245pt;}
.wsb9{word-spacing:4.633285pt;}
.wsc{word-spacing:4.877722pt;}
.ws23{word-spacing:5.047717pt;}
.wsa6{word-spacing:5.058357pt;}
.ws5c{word-spacing:5.100851pt;}
.ws15{word-spacing:5.153985pt;}
.ws48{word-spacing:5.207119pt;}
.ws7f{word-spacing:5.260253pt;}
.wsb3{word-spacing:5.440922pt;}
.ws2b{word-spacing:5.472788pt;}
.ws7b{word-spacing:5.525922pt;}
.ws96{word-spacing:5.611438pt;}
.ws35{word-spacing:5.791591pt;}
.ws5a{word-spacing:5.844725pt;}
.ws84{word-spacing:6.057261pt;}
.ws71{word-spacing:6.163544pt;}
.ws9d{word-spacing:6.216662pt;}
.ws83{word-spacing:6.535466pt;}
.ws85{word-spacing:6.748001pt;}
.ws78{word-spacing:6.960537pt;}
.ws2f{word-spacing:7.119938pt;}
.ws49{word-spacing:7.279340pt;}
.wsa0{word-spacing:7.438741pt;}
.ws1c{word-spacing:10.580064pt;}
.ws6{word-spacing:10.584293pt;}
.ws90{word-spacing:10.998710pt;}
.ws44{word-spacing:12.433325pt;}
.ws0{word-spacing:12.583925pt;}
.ws28{word-spacing:13.230333pt;}
.ws7e{word-spacing:13.921073pt;}
.ws56{word-spacing:15.089047pt;}
.ws64{word-spacing:15.408821pt;}
.wsa1{word-spacing:16.046428pt;}
.ws8a{word-spacing:16.577766pt;}
.ws76{word-spacing:16.776662pt;}
.ws75{word-spacing:16.778257pt;}
.ws77{word-spacing:16.779958pt;}
.ws3c{word-spacing:16.896570pt;}
.wsa2{word-spacing:18.437452pt;}
.ws9f{word-spacing:20.666101pt;}
.ws10{word-spacing:22.534374pt;}
.ws11{word-spacing:26.513799pt;}
.ws9b{word-spacing:41.455722pt;}
.ws6d{word-spacing:48.913162pt;}
.ws69{word-spacing:53.134000pt;}
.ws92{word-spacing:56.352440pt;}
.ws73{word-spacing:64.869220pt;}
.ws68{word-spacing:73.877514pt;}
.ws42{word-spacing:79.766346pt;}
.ws6f{word-spacing:84.461806pt;}
.ws6e{word-spacing:93.855898pt;}
.ws99{word-spacing:103.071433pt;}
.ws6c{word-spacing:139.041051pt;}
.ws6b{word-spacing:175.799191pt;}
.ws6a{word-spacing:175.809779pt;}
.ws98{word-spacing:263.959845pt;}
.ws40{word-spacing:304.664143pt;}
.ws41{word-spacing:381.170753pt;}
.ws95{word-spacing:431.915570pt;}
.ws43{word-spacing:1004.891312pt;}
._3{margin-left:-8.310176pt;}
._2{margin-left:-7.226240pt;}
._7{margin-left:-5.308109pt;}
._8{margin-left:-3.889458pt;}
._1{margin-left:-2.952907pt;}
._0{margin-left:-1.817173pt;}
._4{margin-left:-0.903280pt;}
._10{width:1.437994pt;}
._15{width:2.731332pt;}
._44{width:4.986424pt;}
._5{width:6.598047pt;}
._51{width:9.744852pt;}
._17{width:11.508844pt;}
._b{width:12.645860pt;}
._9{width:14.323554pt;}
._e{width:15.503121pt;}
._d{width:17.449152pt;}
._11{width:18.464103pt;}
._4e{width:19.828332pt;}
._a{width:21.090969pt;}
._50{width:22.007859pt;}
._6{width:22.948898pt;}
._4f{width:24.021625pt;}
._c{width:26.566933pt;}
._16{width:27.478166pt;}
._52{width:30.796582pt;}
._4d{width:32.325449pt;}
._12{width:33.725775pt;}
._13{width:35.142226pt;}
._4c{width:72.064768pt;}
._34{width:83.909213pt;}
._29{width:85.382207pt;}
._1c{width:88.074918pt;}
._1b{width:90.412814pt;}
._37{width:93.771852pt;}
._3d{width:96.013129pt;}
._22{width:98.059901pt;}
._46{width:100.931811pt;}
._4a{width:116.533538pt;}
._47{width:125.141197pt;}
._3c{width:139.180110pt;}
._48{width:140.826354pt;}
._35{width:151.455730pt;}
._1f{width:152.675226pt;}
._45{width:154.046093pt;}
._43{width:159.338220pt;}
._2b{width:160.337158pt;}
._1e{width:166.373181pt;}
._33{width:167.393354pt;}
._2e{width:173.105531pt;}
._2d{width:177.512643pt;}
._3f{width:203.968334pt;}
._25{width:208.179932pt;}
._1d{width:230.578963pt;}
._23{width:247.774469pt;}
._38{width:251.957762pt;}
._32{width:265.712507pt;}
._21{width:273.998995pt;}
._27{width:278.210593pt;}
._18{width:279.612362pt;}
._39{width:282.609168pt;}
._4b{width:286.274371pt;}
._31{width:289.346510pt;}
._2c{width:294.468677pt;}
._26{width:303.458901pt;}
._49{width:311.587458pt;}
._2a{width:317.135583pt;}
._41{width:321.588270pt;}
._1a{width:339.760050pt;}
._40{width:399.503968pt;}
._3a{width:402.670706pt;}
._3e{width:408.021322pt;}
._3b{width:409.854422pt;}
._36{width:424.551277pt;}
._2f{width:436.846494pt;}
._24{width:453.424302pt;}
._42{width:460.523005pt;}
._30{width:465.283811pt;}
._19{width:488.917814pt;}
._20{width:497.876197pt;}
._28{width:500.649802pt;}
._f{width:689.828698pt;}
._14{width:1629.964063pt;}
.fs17{font-size:18.351360pt;}
.fs16{font-size:18.402336pt;}
.fs10{font-size:19.511640pt;}
.fs15{font-size:19.880640pt;}
.fs14{font-size:19.931616pt;}
.fs11{font-size:26.015520pt;}
.fs12{font-size:26.087785pt;}
.fsb{font-size:27.324440pt;}
.fsc{font-size:27.394503pt;}
.fs13{font-size:28.183480pt;}
.fsf{font-size:28.255745pt;}
.fs18{font-size:29.056320pt;}
.fs19{font-size:29.107296pt;}
.fsa{font-size:31.528200pt;}
.fs9{font-size:31.598263pt;}
.fs6{font-size:31.880533pt;}
.fsd{font-size:32.519400pt;}
.fse{font-size:32.591665pt;}
.fs1{font-size:42.507200pt;}
.fs0{font-size:45.429333pt;}
.fs7{font-size:47.820800pt;}
.fs5{font-size:48.352000pt;}
.fs8{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:69.074133pt;}
.fs3{font-size:90.328000pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:19.485576pt;}
.y11e{bottom:19.702224pt;}
.ydd{bottom:19.872967pt;}
.y12d{bottom:25.691904pt;}
.y15e{bottom:26.826120pt;}
.y12c{bottom:31.210056pt;}
.y61{bottom:33.332314pt;}
.y15d{bottom:34.740144pt;}
.y130{bottom:36.702720pt;}
.y60{bottom:41.827412pt;}
.y12f{bottom:42.208128pt;}
.y75{bottom:46.399001pt;}
.y6f{bottom:46.521611pt;}
.y12e{bottom:47.726280pt;}
.ya7{bottom:50.694131pt;}
.yd6{bottom:52.229770pt;}
.ya8{bottom:52.952423pt;}
.yd5{bottom:60.991941pt;}
.ya6{bottom:61.570064pt;}
.ye0{bottom:66.339576pt;}
.y68{bottom:67.417801pt;}
.y74{bottom:68.206006pt;}
.y71{bottom:68.293584pt;}
.y70{bottom:68.346131pt;}
.y69{bottom:68.398678pt;}
.ya5{bottom:72.337599pt;}
.y99{bottom:79.419601pt;}
.y155{bottom:80.745984pt;}
.yd8{bottom:82.563143pt;}
.y24{bottom:83.348000pt;}
.y51{bottom:84.378667pt;}
.y98{bottom:88.178160pt;}
.y5a{bottom:88.454117pt;}
.y154{bottom:89.309952pt;}
.yd7{bottom:91.321702pt;}
.y77{bottom:92.076357pt;}
.y59{bottom:96.315148pt;}
.y23{bottom:96.632000pt;}
.y50{bottom:100.318667pt;}
.y76{bottom:100.574958pt;}
.ya2{bottom:111.447597pt;}
.y123{bottom:115.756301pt;}
.y94{bottom:116.258667pt;}
.y11f{bottom:116.317037pt;}
.y122{bottom:121.271904pt;}
.y22{bottom:122.673333pt;}
.y126{bottom:126.573408pt;}
.y66{bottom:127.093677pt;}
.y6a{bottom:127.163740pt;}
.y6e{bottom:127.633160pt;}
.yd4{bottom:127.851828pt;}
.y125{bottom:132.078816pt;}
.y4f{bottom:132.198667pt;}
.y19d{bottom:132.464000pt;}
.y16f{bottom:132.465333pt;}
.y124{bottom:137.594419pt;}
.y21{bottom:140.013333pt;}
.y19c{bottom:145.748000pt;}
.y5f{bottom:148.126490pt;}
.y93{bottom:148.140000pt;}
.y6d{bottom:151.755736pt;}
.y5e{bottom:156.625091pt;}
.y19b{bottom:159.032000pt;}
.y6c{bottom:160.247331pt;}
.y65{bottom:162.965763pt;}
.y72{bottom:163.512251pt;}
.y73{bottom:163.771483pt;}
.y92{bottom:164.080000pt;}
.ydf{bottom:165.039568pt;}
.y4e{bottom:168.506667pt;}
.y120{bottom:172.156147pt;}
.y19a{bottom:172.314667pt;}
.ydc{bottom:179.275839pt;}
.y16e{bottom:179.370667pt;}
.y91{bottom:180.020000pt;}
.y20{bottom:180.090667pt;}
.y67{bottom:181.868670pt;}
.y147{bottom:183.029328pt;}
.ya4{bottom:183.264885pt;}
.y64{bottom:183.795393pt;}
.y6b{bottom:184.243795pt;}
.y4d{bottom:184.448000pt;}
.ya0{bottom:184.710192pt;}
.y199{bottom:185.598667pt;}
.ydb{bottom:188.019944pt;}
.y146{bottom:188.534736pt;}
.ya3{bottom:192.023444pt;}
.y14b{bottom:194.641661pt;}
.y16d{bottom:195.310667pt;}
.y90{bottom:195.960000pt;}
.y1f{bottom:196.030667pt;}
.y198{bottom:198.882667pt;}
.y14a{bottom:200.147069pt;}
.y4c{bottom:200.388000pt;}
.y58{bottom:207.826888pt;}
.ya1{bottom:209.909114pt;}
.y16c{bottom:211.250667pt;}
.y56{bottom:211.428109pt;}
.y8f{bottom:211.900000pt;}
.y1e{bottom:211.972000pt;}
.ye7{bottom:212.165333pt;}
.y5b{bottom:215.687919pt;}
.y57{bottom:216.318483pt;}
.y4b{bottom:216.328000pt;}
.ybb{bottom:218.479782pt;}
.y55{bottom:219.926711pt;}
.y105{bottom:220.989333pt;}
.y121{bottom:223.341149pt;}
.y63{bottom:223.640032pt;}
.y197{bottom:225.449333pt;}
.y16b{bottom:227.190667pt;}
.y9d{bottom:227.549082pt;}
.y15c{bottom:227.658816pt;}
.y1d{bottom:227.912000pt;}
.y11c{bottom:228.744605pt;}
.ybc{bottom:231.501995pt;}
.y4a{bottom:232.268000pt;}
.y15b{bottom:233.164224pt;}
.y104{bottom:234.273333pt;}
.y9c{bottom:236.307640pt;}
.yda{bottom:236.538889pt;}
.y8e{bottom:237.798667pt;}
.y15a{bottom:238.669632pt;}
.y196{bottom:238.733333pt;}
.y16a{bottom:243.130667pt;}
.y1c{bottom:243.852000pt;}
.ybd{bottom:245.145690pt;}
.yd9{bottom:245.304674pt;}
.y62{bottom:246.515493pt;}
.y49{bottom:248.208000pt;}
.y195{bottom:252.016000pt;}
.y8d{bottom:253.738667pt;}
.y11a{bottom:255.284000pt;}
.ye6{bottom:256.829333pt;}
.y103{bottom:257.360000pt;}
.y169{bottom:259.070667pt;}
.y1b{bottom:259.792000pt;}
.y7a{bottom:259.862431pt;}
.yba{bottom:260.877853pt;}
.y9f{bottom:262.901283pt;}
.y48{bottom:264.148000pt;}
.y194{bottom:265.300000pt;}
.y145{bottom:265.493203pt;}
.y151{bottom:266.079427pt;}
.y5d{bottom:267.499261pt;}
.y119{bottom:268.568000pt;}
.yb9{bottom:269.643638pt;}
.y8c{bottom:269.680000pt;}
.y79{bottom:270.603037pt;}
.y54{bottom:271.128507pt;}
.y9e{bottom:271.659841pt;}
.ye5{bottom:272.769333pt;}
.y157{bottom:274.291661pt;}
.y168{bottom:275.012000pt;}
.y1a{bottom:275.732000pt;}
.y5c{bottom:275.990857pt;}
.y193{bottom:278.582667pt;}
.y53{bottom:279.620103pt;}
.y47{bottom:280.089333pt;}
.y102{bottom:280.446667pt;}
.y78{bottom:280.846199pt;}
.y118{bottom:281.852000pt;}
.y158{bottom:283.283827pt;}
.y149{bottom:285.210720pt;}
.y8b{bottom:285.620000pt;}
.y14c{bottom:286.714512pt;}
.ye4{bottom:288.710667pt;}
.y150{bottom:290.716128pt;}
.y167{bottom:290.952000pt;}
.y148{bottom:291.047472pt;}
.y19{bottom:291.673333pt;}
.y192{bottom:291.866667pt;}
.y101{bottom:293.729333pt;}
.yb0{bottom:293.997056pt;}
.y117{bottom:295.134667pt;}
.yac{bottom:295.962673pt;}
.y46{bottom:296.029333pt;}
.y134{bottom:296.746589pt;}
.y144{bottom:298.617408pt;}
.y133{bottom:299.244413pt;}
.yaf{bottom:301.151324pt;}
.y8a{bottom:301.560000pt;}
.y153{bottom:302.246899pt;}
.y11d{bottom:302.782147pt;}
.yab{bottom:303.116941pt;}
.ye3{bottom:304.650667pt;}
.y191{bottom:305.150667pt;}
.y166{bottom:306.892000pt;}
.y100{bottom:307.013333pt;}
.y18{bottom:307.613333pt;}
.y116{bottom:308.418667pt;}
.y45{bottom:311.969333pt;}
.y142{bottom:312.931469pt;}
.y138{bottom:313.018128pt;}
.y135{bottom:313.104787pt;}
.y159{bottom:314.802288pt;}
.y89{bottom:317.500000pt;}
.yae{bottom:317.750671pt;}
.y190{bottom:318.433333pt;}
.y141{bottom:318.436877pt;}
.y137{bottom:318.523536pt;}
.yaa{bottom:319.737967pt;}
.yff{bottom:320.297333pt;}
.ye2{bottom:320.590667pt;}
.y115{bottom:321.701333pt;}
.y165{bottom:322.832000pt;}
.y140{bottom:323.937187pt;}
.y136{bottom:324.039139pt;}
.yad{bottom:326.494776pt;}
.y44{bottom:327.909333pt;}
.ya9{bottom:328.482073pt;}
.y13a{bottom:329.279472pt;}
.y18f{bottom:331.717333pt;}
.y152{bottom:333.332064pt;}
.y88{bottom:333.440000pt;}
.y139{bottom:334.800173pt;}
.y143{bottom:334.810368pt;}
.y14e{bottom:336.762749pt;}
.y14f{bottom:336.783139pt;}
.y164{bottom:338.772000pt;}
.y17{bottom:339.758667pt;}
.y14d{bottom:342.263059pt;}
.yfe{bottom:343.384000pt;}
.y43{bottom:343.849333pt;}
.y114{bottom:344.789333pt;}
.y18e{bottom:345.001333pt;}
.y132{bottom:345.591792pt;}
.y13f{bottom:346.142333pt;}
.yde{bottom:348.738046pt;}
.y87{bottom:349.381333pt;}
.y13e{bottom:351.647741pt;}
.y12b{bottom:352.065744pt;}
.ycb{bottom:352.669280pt;}
.ybf{bottom:352.857170pt;}
.yc3{bottom:352.929435pt;}
.y128{bottom:354.589056pt;}
.y163{bottom:354.713333pt;}
.yfd{bottom:356.666667pt;}
.y12a{bottom:357.571152pt;}
.y18d{bottom:358.284000pt;}
.y42{bottom:359.790667pt;}
.ybe{bottom:360.025891pt;}
.yc2{bottom:360.076476pt;}
.y127{bottom:360.094464pt;}
.yca{bottom:361.435065pt;}
.y129{bottom:363.091853pt;}
.ye1{bottom:364.357333pt;}
.y86{bottom:365.321333pt;}
.y113{bottom:367.662667pt;}
.yfc{bottom:369.950667pt;}
.y162{bottom:370.653333pt;}
.y18c{bottom:371.568000pt;}
.y131{bottom:371.630333pt;}
.yb4{bottom:374.428372pt;}
.y41{bottom:375.730667pt;}
.y85{bottom:381.261333pt;}
.yb3{bottom:381.582640pt;}
.y13d{bottom:382.294512pt;}
.y13c{bottom:382.641149pt;}
.yfb{bottom:383.234667pt;}
.y18b{bottom:384.852000pt;}
.y95{bottom:386.009333pt;}
.y161{bottom:386.593333pt;}
.y13b{bottom:388.156752pt;}
.ycd{bottom:388.570697pt;}
.y40{bottom:391.670667pt;}
.yc9{bottom:391.822637pt;}
.yc5{bottom:395.941761pt;}
.yb6{bottom:396.375353pt;}
.yfa{bottom:396.517333pt;}
.y84{bottom:397.201333pt;}
.ycc{bottom:397.314803pt;}
.y18a{bottom:398.134667pt;}
.yc8{bottom:400.588422pt;}
.y112{bottom:401.690667pt;}
.yc4{bottom:403.117709pt;}
.yb5{bottom:403.529621pt;}
.y16{bottom:404.076000pt;}
.y189{bottom:411.418667pt;}
.y83{bottom:413.141333pt;}
.yc7{bottom:417.512963pt;}
.y111{bottom:417.630667pt;}
.yb8{bottom:417.932102pt;}
.yf9{bottom:419.604000pt;}
.y3f{bottom:423.816000pt;}
.yd1{bottom:424.450435pt;}
.yc6{bottom:424.681684pt;}
.y188{bottom:424.702667pt;}
.y156{bottom:424.884960pt;}
.yb7{bottom:425.100823pt;}
.y15{bottom:428.137333pt;}
.y82{bottom:429.081333pt;}
.y160{bottom:431.106667pt;}
.yf8{bottom:432.888000pt;}
.yd0{bottom:433.194541pt;}
.y110{bottom:433.572000pt;}
.y187{bottom:437.985333pt;}
.yb2{bottom:441.057009pt;}
.yc1{bottom:441.360523pt;}
.y14{bottom:442.482667pt;}
.y81{bottom:445.022667pt;}
.yf7{bottom:446.172000pt;}
.y10f{bottom:449.512000pt;}
.yb1{bottom:449.793888pt;}
.yc0{bottom:450.126308pt;}
.y186{bottom:451.269333pt;}
.y11b{bottom:452.758667pt;}
.yf6{bottom:459.454667pt;}
.y80{bottom:460.962667pt;}
.y185{bottom:464.553333pt;}
.y10e{bottom:465.452000pt;}
.yd3{bottom:465.461012pt;}
.y3e{bottom:468.094667pt;}
.ycf{bottom:469.204356pt;}
.y97{bottom:472.131102pt;}
.y9b{bottom:472.145555pt;}
.yf5{bottom:472.738667pt;}
.y13{bottom:472.769333pt;}
.yd2{bottom:474.205117pt;}
.y7f{bottom:476.902667pt;}
.y184{bottom:477.836000pt;}
.yce{bottom:477.948462pt;}
.y96{bottom:480.867981pt;}
.y9a{bottom:480.889661pt;}
.y10d{bottom:481.392000pt;}
.y3d{bottom:484.034667pt;}
.yf4{bottom:486.021333pt;}
.y12{bottom:487.116000pt;}
.y183{bottom:491.120000pt;}
.y7e{bottom:492.842667pt;}
.y10c{bottom:497.332000pt;}
.y3c{bottom:499.976000pt;}
.y11{bottom:501.461333pt;}
.y182{bottom:504.402667pt;}
.yf3{bottom:509.108000pt;}
.y10b{bottom:513.272000pt;}
.y10{bottom:515.808000pt;}
.y3b{bottom:515.916000pt;}
.y181{bottom:517.686667pt;}
.y7d{bottom:518.741333pt;}
.yf2{bottom:522.392000pt;}
.y10a{bottom:529.213333pt;}
.yf{bottom:530.154667pt;}
.y180{bottom:530.970667pt;}
.y3a{bottom:531.856000pt;}
.y7c{bottom:534.681333pt;}
.yf1{bottom:535.676000pt;}
.y17f{bottom:544.253333pt;}
.ye{bottom:544.500000pt;}
.y109{bottom:545.153333pt;}
.y39{bottom:547.796000pt;}
.yf0{bottom:548.958667pt;}
.y17e{bottom:557.537333pt;}
.yd{bottom:558.846667pt;}
.y108{bottom:561.093333pt;}
.yef{bottom:562.242667pt;}
.y38{bottom:563.736000pt;}
.y17d{bottom:570.821333pt;}
.yc{bottom:573.193333pt;}
.y7b{bottom:574.184000pt;}
.y37{bottom:579.676000pt;}
.y17c{bottom:584.104000pt;}
.yee{bottom:585.329333pt;}
.yb{bottom:587.538667pt;}
.y107{bottom:592.973333pt;}
.y36{bottom:595.617333pt;}
.y52{bottom:595.836000pt;}
.y17b{bottom:597.388000pt;}
.yed{bottom:606.036000pt;}
.y17a{bottom:610.672000pt;}
.ya{bottom:610.917333pt;}
.y35{bottom:611.557333pt;}
.y179{bottom:623.954667pt;}
.y106{bottom:624.220000pt;}
.y34{bottom:627.497333pt;}
.y178{bottom:637.238667pt;}
.yec{bottom:640.161333pt;}
.y33{bottom:643.437333pt;}
.y177{bottom:650.522667pt;}
.yeb{bottom:656.101333pt;}
.y176{bottom:663.805333pt;}
.y9{bottom:667.337333pt;}
.yea{bottom:672.041333pt;}
.y32{bottom:675.584000pt;}
.y175{bottom:677.089333pt;}
.y8{bottom:684.733333pt;}
.ye9{bottom:687.981333pt;}
.y174{bottom:690.372000pt;}
.y173{bottom:703.656000pt;}
.ye8{bottom:703.921333pt;}
.y7{bottom:715.010667pt;}
.y172{bottom:716.940000pt;}
.y31{bottom:719.862667pt;}
.y171{bottom:730.222667pt;}
.y30{bottom:735.802667pt;}
.y6{bottom:742.109333pt;}
.y2f{bottom:751.742667pt;}
.y170{bottom:759.712000pt;}
.y2e{bottom:767.682667pt;}
.y5{bottom:774.918667pt;}
.y2d{bottom:783.622667pt;}
.y4{bottom:790.858667pt;}
.y2c{bottom:799.562667pt;}
.y2b{bottom:815.504000pt;}
.y2a{bottom:831.444000pt;}
.y3{bottom:836.346667pt;}
.y29{bottom:847.384000pt;}
.y2{bottom:848.952000pt;}
.y28{bottom:863.324000pt;}
.y27{bottom:879.264000pt;}
.y26{bottom:895.204000pt;}
.y1{bottom:920.910667pt;}
.y25{bottom:921.772000pt;}
.hd{height:16.577877pt;}
.h2a{height:19.139895pt;}
.h29{height:19.193061pt;}
.h25{height:20.734886pt;}
.h24{height:20.788053pt;}
.h7{height:21.774404pt;}
.h1e{height:27.133374pt;}
.h20{height:27.208745pt;}
.h18{height:28.498537pt;}
.h19{height:28.571610pt;}
.h3{height:29.244954pt;}
.h21{height:29.394489pt;}
.h1d{height:29.469859pt;}
.h32{height:29.499997pt;}
.h22{height:29.712533pt;}
.h30{height:30.304834pt;}
.h31{height:30.358000pt;}
.h2b{height:31.149841pt;}
.ha{height:32.661606pt;}
.h16{height:32.821349pt;}
.h11{height:32.882927pt;}
.h15{height:32.894285pt;}
.h9{height:32.900710pt;}
.h10{height:32.956001pt;}
.h26{height:33.073251pt;}
.h8{height:33.091994pt;}
.h2{height:33.117984pt;}
.h1b{height:33.916718pt;}
.h1c{height:33.992088pt;}
.h17{height:35.052215pt;}
.h12{height:35.506282pt;}
.h14{height:35.618382pt;}
.h13{height:35.842582pt;}
.he{height:36.290431pt;}
.hc{height:36.556100pt;}
.hb{height:36.768636pt;}
.h2c{height:39.774980pt;}
.h2d{height:41.161527pt;}
.h2f{height:41.243089pt;}
.h2e{height:42.486903pt;}
.h4{height:43.867614pt;}
.h27{height:45.307500pt;}
.h28{height:47.754349pt;}
.h6{height:58.343509pt;}
.h5{height:62.145664pt;}
.h1f{height:64.931249pt;}
.hf{height:312.654650pt;}
.h23{height:455.725440pt;}
.h1a{height:522.478360pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:441.394800pt;}
.w4{width:621.652320pt;}
.w3{width:621.662530pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x58{left:24.914520pt;}
.x28{left:36.134820pt;}
.x59{left:42.985512pt;}
.x17{left:46.766830pt;}
.xb{left:49.133333pt;}
.xc{left:51.882667pt;}
.xf{left:54.866667pt;}
.xe{left:56.670667pt;}
.x4d{left:57.830333pt;}
.x30{left:59.413141pt;}
.x18{left:61.129677pt;}
.x4e{left:62.039789pt;}
.x6{left:63.128000pt;}
.xd{left:65.074667pt;}
.x4c{left:67.134495pt;}
.x10{left:70.806667pt;}
.x85{left:73.464000pt;}
.x57{left:75.270667pt;}
.x64{left:81.612576pt;}
.x7b{left:83.182637pt;}
.x7c{left:87.143472pt;}
.x5b{left:90.186739pt;}
.x2d{left:93.694804pt;}
.x5a{left:97.201037pt;}
.x4{left:102.589333pt;}
.x29{left:104.407386pt;}
.x2f{left:111.049327pt;}
.x6c{left:113.345136pt;}
.x20{left:117.389998pt;}
.x2e{left:121.719871pt;}
.x6b{left:122.648256pt;}
.x8{left:125.324000pt;}
.xa{left:127.600000pt;}
.x4a{left:129.571743pt;}
.x4b{left:133.763132pt;}
.x5c{left:135.886723pt;}
.x4f{left:137.593195pt;}
.x12{left:139.273333pt;}
.x53{left:140.902947pt;}
.x14{left:145.485127pt;}
.x26{left:147.236694pt;}
.x51{left:148.396862pt;}
.x52{left:150.145683pt;}
.x50{left:152.407588pt;}
.x54{left:154.828477pt;}
.x1e{left:157.486862pt;}
.x13{left:158.783021pt;}
.x34{left:159.825333pt;}
.x33{left:162.788000pt;}
.x15{left:163.701421pt;}
.x16{left:167.134491pt;}
.x63{left:169.230125pt;}
.x5d{left:178.161120pt;}
.x35{left:179.485333pt;}
.x1f{left:182.807510pt;}
.x5f{left:186.256109pt;}
.x7{left:195.549333pt;}
.x66{left:197.022240pt;}
.x65{left:199.953360pt;}
.x62{left:211.448448pt;}
.x60{left:214.507008pt;}
.x61{left:217.055808pt;}
.x11{left:221.490667pt;}
.x27{left:225.517711pt;}
.x22{left:229.455233pt;}
.x1{left:233.608000pt;}
.x2{left:238.677333pt;}
.x43{left:240.715825pt;}
.x45{left:242.486326pt;}
.x23{left:243.586873pt;}
.x40{left:244.813270pt;}
.x41{left:247.039042pt;}
.x44{left:248.339818pt;}
.x2b{left:249.233924pt;}
.x42{left:252.097615pt;}
.x2a{left:259.301929pt;}
.x1d{left:260.703183pt;}
.x19{left:261.999342pt;}
.x31{left:263.750909pt;}
.x1c{left:268.431095pt;}
.x32{left:270.182661pt;}
.x6a{left:273.945024pt;}
.x69{left:275.693501pt;}
.x67{left:284.395104pt;}
.x68{left:290.512224pt;}
.x6f{left:293.942909pt;}
.x5e{left:298.117843pt;}
.x6e{left:300.314909pt;}
.x5{left:305.277333pt;}
.x6d{left:312.024096pt;}
.x70{left:324.003456pt;}
.x2c{left:332.167103pt;}
.x24{left:333.239061pt;}
.x1a{left:345.044621pt;}
.x78{left:348.053933pt;}
.x1b{left:354.257861pt;}
.x73{left:356.006189pt;}
.x72{left:361.868429pt;}
.x9{left:365.777333pt;}
.x7d{left:368.989776pt;}
.x83{left:374.760259pt;}
.x82{left:375.652339pt;}
.x21{left:379.774685pt;}
.x25{left:380.881675pt;}
.x81{left:382.534099pt;}
.x74{left:390.868675pt;}
.x71{left:402.863328pt;}
.x80{left:439.795440pt;}
.x75{left:454.323600pt;}
.x76{left:458.019360pt;}
.x55{left:467.123115pt;}
.x36{left:469.160997pt;}
.x3c{left:478.649435pt;}
.x7a{left:480.627216pt;}
.x3e{left:481.814657pt;}
.x77{left:486.219283pt;}
.x39{left:487.126159pt;}
.x49{left:488.549786pt;}
.x46{left:492.647230pt;}
.x47{left:494.403278pt;}
.x38{left:496.390575pt;}
.x3f{left:498.305606pt;}
.x3d{left:499.483531pt;}
.x37{left:501.268485pt;}
.x48{left:502.280199pt;}
.x79{left:518.747069pt;}
.x3{left:520.034667pt;}
.x3b{left:520.975241pt;}
.x3a{left:530.846686pt;}
.x7f{left:533.912429pt;}
.x7e{left:538.882589pt;}
.x84{left:552.263789pt;}
.x56{left:604.550099pt;}
}




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