
    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_899ea608621b502a5e2007b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9fade211f2f736dc40cedd11.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_026ca11b6d33cea7d13efb95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_89615b4cbd57eda8f4f92e05.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eff510206283456dd534a41b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_962ad738b47277f6d5efc978.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_2f165f4261907c8883e6b94d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2e27a007c425fcb2c91f7bc8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;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_ddee4da448d8c6b2dc01ae56.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989746;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_301518397a73b59b37148850.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_4b6deb5c91aab6adbaba9baf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b8ee22b16c02553ddd050769.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2aff084c1dfa41e306e75651.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_88db4f924f193734de5021e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;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_aa84268239f1656298afd6dd.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b3c96668c28cc62b2528e058.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001465;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_b2a97603172b19f219d22b0c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.002930;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_0cfd4f02af251ed50acf4eca.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.989746;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;}
.m3{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);}
.m2{transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250592,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);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls22{letter-spacing:-4.320000px;}
.ls1c{letter-spacing:-3.600000px;}
.lsf{letter-spacing:-1.440000px;}
.ls26{letter-spacing:-0.852000px;}
.lsa{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.322800px;}
.ls5{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.152400px;}
.ls29{letter-spacing:-0.132600px;}
.ls6{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.037440px;}
.lse{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.023040px;}
.ls1b{letter-spacing:0.036000px;}
.ls24{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.061948px;}
.ls10{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.256200px;}
.ls28{letter-spacing:0.256320px;}
.ls16{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.306600px;}
.ls1e{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.576000px;}
.lsb{letter-spacing:0.720000px;}
.lsd{letter-spacing:5.760000px;}
.ls2d{letter-spacing:6.065280px;}
.ls19{letter-spacing:8.969760px;}
.ls23{letter-spacing:21.029760px;}
.ls2b{letter-spacing:39.185280px;}
.ls21{letter-spacing:64.002720px;}
.ls12{letter-spacing:64.224000px;}
.ls0{letter-spacing:846.120000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-72.000000px;}
.ws1a{word-spacing:-59.760000px;}
.ws0{word-spacing:-36.144000px;}
.ws1{word-spacing:-30.240000px;}
.ws2{word-spacing:-29.736000px;}
.ws1d{word-spacing:-23.977440px;}
.ws8{word-spacing:-23.381280px;}
.ws14{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.262320px;}
.ws19{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws10{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.208000px;}
.ws4{word-spacing:-16.919880px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.506480px;}
.ws15{word-spacing:-16.297800px;}
.ws1c{word-spacing:-15.840000px;}
.ws22{word-spacing:-15.226440px;}
.ws1e{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.940000px;}
.ws21{word-spacing:-14.647440px;}
.ws20{word-spacing:-14.595840px;}
.ws1f{word-spacing:-14.572800px;}
.ws1b{word-spacing:-13.680000px;}
.ws18{word-spacing:-12.060000px;}
.ws9{word-spacing:0.000000px;}
.wsd{word-spacing:48.294000px;}
.wse{word-spacing:178.152000px;}
.ws16{word-spacing:197.490000px;}
.ws17{word-spacing:586.350000px;}
._6{margin-left:-15.936000px;}
._5{margin-left:-13.992000px;}
._4{margin-left:-12.048000px;}
._9{margin-left:-8.088000px;}
._8{margin-left:-6.216000px;}
._15{margin-left:-5.184000px;}
._7{margin-left:-4.056000px;}
._a{margin-left:-2.592000px;}
._0{margin-left:-1.516320px;}
._1{width:1.372320px;}
._2{width:2.656560px;}
._b{width:4.536000px;}
._c{width:5.976000px;}
._10{width:7.123680px;}
._11{width:8.496000px;}
._14{width:9.552000px;}
._16{width:10.876320px;}
._12{width:11.952000px;}
._d{width:12.960000px;}
._e{width:14.272320px;}
._13{width:15.823680px;}
._19{width:16.944960px;}
._f{width:19.132320px;}
._17{width:20.251680px;}
._18{width:22.156320px;}
._1c{width:23.976000px;}
._1d{width:24.984000px;}
._1a{width:26.712000px;}
._1b{width:27.840000px;}
._23{width:29.256000px;}
._2e{width:30.552000px;}
._22{width:32.256000px;}
._26{width:33.264000px;}
._27{width:34.319040px;}
._1e{width:37.008000px;}
._2a{width:38.664000px;}
._2b{width:40.440000px;}
._2c{width:44.856000px;}
._2d{width:46.296000px;}
._28{width:52.992000px;}
._29{width:54.372000px;}
._2f{width:60.480000px;}
._24{width:70.416000px;}
._25{width:71.928000px;}
._21{width:98.748000px;}
._1f{width:208.620000px;}
._31{width:501.972000px;}
._30{width:503.064000px;}
._20{width:639.780000px;}
._32{width:648.516000px;}
._3{width:2107.672800px;}
.fc9{color:rgb(19,20,19);}
.fc6{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:transparent;}
.fca{color:rgb(34,30,31);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(68,84,106);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fsb{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:56.992164px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsf{font-size:72.479166px;}
.fs2{font-size:84.240000px;}
.fs9{font-size:84.384000px;}
.fsd{font-size:92.922007px;}
.fs6{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fse{font-size:113.364849px;}
.fs0{font-size:144.000000px;}
.y12{bottom:-27.720000px;}
.y0{bottom:0.000000px;}
.y23e{bottom:0.774350px;}
.y281{bottom:4.494000px;}
.y25d{bottom:4.500000px;}
.y32d{bottom:4.530000px;}
.y2cc{bottom:4.545000px;}
.y260{bottom:4.860000px;}
.y2b9{bottom:5.040000px;}
.y2a3{bottom:5.580000px;}
.y2f3{bottom:7.200000px;}
.y27d{bottom:7.380000px;}
.y2e5{bottom:7.554000px;}
.y270{bottom:7.560000px;}
.y2a4{bottom:8.460000px;}
.y253{bottom:9.540000px;}
.y276{bottom:9.720000px;}
.y282{bottom:9.894000px;}
.y272{bottom:9.900000px;}
.y28f{bottom:9.945000px;}
.y2fc{bottom:11.520000px;}
.y25a{bottom:12.060000px;}
.y2ee{bottom:13.140000px;}
.y30f{bottom:13.500000px;}
.y25b{bottom:14.040000px;}
.ycb{bottom:14.220000px;}
.yca{bottom:14.400000px;}
.y198{bottom:14.430000px;}
.y141{bottom:14.445000px;}
.y2f0{bottom:15.120000px;}
.y175{bottom:15.840000px;}
.y1a{bottom:16.380000px;}
.y322{bottom:17.640000px;}
.y88{bottom:17.670000px;}
.y311{bottom:17.820000px;}
.y32e{bottom:17.850000px;}
.y317{bottom:17.865000px;}
.y14{bottom:18.540000px;}
.y258{bottom:20.700000px;}
.y257{bottom:22.500000px;}
.y259{bottom:22.680000px;}
.y251{bottom:23.385682px;}
.y2f1{bottom:23.580000px;}
.yf{bottom:24.120000px;}
.y2fe{bottom:24.480000px;}
.y320{bottom:24.510000px;}
.y327{bottom:24.525000px;}
.y2a8{bottom:24.660000px;}
.y2b4{bottom:24.690000px;}
.y24{bottom:27.756000px;}
.y2ed{bottom:28.080000px;}
.yc8{bottom:29.700000px;}
.y139{bottom:29.880000px;}
.y23f{bottom:29.889912px;}
.y2a2{bottom:30.060000px;}
.y26f{bottom:30.600000px;}
.y285{bottom:30.780000px;}
.y19{bottom:35.100000px;}
.y2ec{bottom:36.540000px;}
.y30e{bottom:42.660000px;}
.y2ef{bottom:44.100000px;}
.y2b0{bottom:44.820000px;}
.y172{bottom:45.360000px;}
.y256{bottom:45.720000px;}
.y16a{bottom:46.440000px;}
.y86{bottom:47.595000px;}
.y2c5{bottom:50.220000px;}
.y18{bottom:53.640000px;}
.y26e{bottom:53.820000px;}
.y284{bottom:53.850000px;}
.y6{bottom:58.500000px;}
.y2eb{bottom:60.660000px;}
.y30d{bottom:62.820000px;}
.y2af{bottom:64.980000px;}
.y7b{bottom:65.130000px;}
.ye{bottom:65.340000px;}
.y23{bottom:65.736000px;}
.y250{bottom:66.625389px;}
.y255{bottom:68.760000px;}
.y20{bottom:70.380000px;}
.y169{bottom:72.615000px;}
.y21{bottom:75.600000px;}
.y8{bottom:77.940000px;}
.y15{bottom:83.196000px;}
.y2ea{bottom:83.880000px;}
.y7c{bottom:85.065000px;}
.y17{bottom:87.114000px;}
.y15f{bottom:90.180000px;}
.y30c{bottom:92.010000px;}
.y1f{bottom:92.340000px;}
.y24f{bottom:104.878282px;}
.y7d{bottom:105.015000px;}
.yd{bottom:106.740000px;}
.y160{bottom:111.630000px;}
.yb9{bottom:113.076000px;}
.y10a{bottom:113.796000px;}
.yd6{bottom:114.336000px;}
.y4d{bottom:115.596000px;}
.y79{bottom:116.856000px;}
.yb0{bottom:120.456000px;}
.y2e6{bottom:122.076000px;}
.y68{bottom:122.256000px;}
.y32a{bottom:124.416000px;}
.y7e{bottom:124.920000px;}
.y1e{bottom:125.100000px;}
.y2a0{bottom:128.376000px;}
.y2c3{bottom:128.916000px;}
.y1ef{bottom:130.536000px;}
.yfa{bottom:131.256000px;}
.y16{bottom:131.754000px;}
.y9f{bottom:132.516000px;}
.y236{bottom:133.056000px;}
.y161{bottom:133.125000px;}
.y23c{bottom:134.136000px;}
.y1c0{bottom:135.936000px;}
.y132{bottom:136.296000px;}
.y1c7{bottom:136.656000px;}
.y18d{bottom:141.876000px;}
.y39{bottom:142.596000px;}
.y63{bottom:142.956000px;}
.y24e{bottom:143.136337px;}
.y16e{bottom:143.316000px;}
.y1a3{bottom:144.036000px;}
.y7f{bottom:144.870000px;}
.y11f{bottom:147.096000px;}
.yc{bottom:148.140000px;}
.y2e4{bottom:148.356000px;}
.y280{bottom:148.536000px;}
.y135{bottom:148.716000px;}
.y208{bottom:149.976000px;}
.y162{bottom:154.590000px;}
.yea{bottom:155.190000px;}
.y11{bottom:155.700000px;}
.yd5{bottom:155.730000px;}
.y78{bottom:158.250000px;}
.y329{bottom:158.610000px;}
.yb8{bottom:158.970000px;}
.yaf{bottom:161.850000px;}
.y29f{bottom:162.750000px;}
.y2c2{bottom:163.290000px;}
.y67{bottom:163.650000px;}
.y80{bottom:164.775000px;}
.y109{bottom:167.250000px;}
.y23b{bottom:168.330000px;}
.y24d{bottom:168.380149px;}
.y15d{bottom:168.870000px;}
.y4c{bottom:169.050000px;}
.y21f{bottom:170.310000px;}
.y32b{bottom:170.670000px;}
.y1ee{bottom:171.930000px;}
.y1dc{bottom:172.290000px;}
.yf9{bottom:172.650000px;}
.y9e{bottom:173.910000px;}
.y2e3{bottom:174.630000px;}
.y27f{bottom:174.810000px;}
.y155{bottom:176.070000px;}
.y131{bottom:177.690000px;}
.y38{bottom:180.210000px;}
.y2c1{bottom:180.750000px;}
.y1a2{bottom:182.010000px;}
.y18c{bottom:183.270000px;}
.y1bf{bottom:184.170000px;}
.y207{bottom:184.350000px;}
.y81{bottom:184.710000px;}
.y345{bottom:188.130000px;}
.yb{bottom:189.540000px;}
.y1aa{bottom:189.570000px;}
.y1c6{bottom:190.110000px;}
.y1d{bottom:190.980000px;}
.y18e{bottom:191.190000px;}
.ye9{bottom:196.590000px;}
.yd4{bottom:197.130000px;}
.y163{bottom:197.535000px;}
.y23a{bottom:198.750000px;}
.y77{bottom:199.650000px;}
.y240{bottom:199.896021px;}
.y11e{bottom:200.370000px;}
.y2e2{bottom:200.910000px;}
.y27e{bottom:201.090000px;}
.y235{bottom:201.630000px;}
.yb7{bottom:201.990000px;}
.y62{bottom:203.250000px;}
.y82{bottom:204.630000px;}
.y21e{bottom:204.690000px;}
.y66{bottom:205.050000px;}
.y24c{bottom:206.787912px;}
.y2c0{bottom:207.030000px;}
.y30a{bottom:207.390000px;}
.y1b3{bottom:208.650000px;}
.yf8{bottom:214.050000px;}
.y9d{bottom:215.310000px;}
.y206{bottom:218.550000px;}
.y164{bottom:219.030000px;}
.y130{bottom:219.090000px;}
.y1a1{bottom:219.810000px;}
.y108{bottom:220.710000px;}
.y15c{bottom:222.150000px;}
.y344{bottom:222.330000px;}
.y4b{bottom:222.510000px;}
.y83{bottom:224.565000px;}
.y18b{bottom:224.670000px;}
.y1ed{bottom:225.210000px;}
.y1db{bottom:225.750000px;}
.y1f5{bottom:226.110000px;}
.y1c{bottom:226.620000px;}
.y2e1{bottom:227.190000px;}
.y27c{bottom:227.370000px;}
.y37{bottom:228.090000px;}
.y154{bottom:229.530000px;}
.ya{bottom:230.940000px;}
.y1a9{bottom:230.970000px;}
.y29e{bottom:231.510000px;}
.y24b{bottom:232.057536px;}
.y1be{bottom:232.410000px;}
.y2bf{bottom:233.310000px;}
.y328{bottom:233.850000px;}
.y234{bottom:236.010000px;}
.ye8{bottom:237.990000px;}
.y21d{bottom:238.890000px;}
.yd3{bottom:240.150000px;}
.y165{bottom:240.480000px;}
.y76{bottom:241.050000px;}
.y309{bottom:241.770000px;}
.y1c5{bottom:243.390000px;}
.y84{bottom:244.470000px;}
.yae{bottom:244.650000px;}
.yb6{bottom:245.190000px;}
.y65{bottom:246.450000px;}
.y153{bottom:246.990000px;}
.y16d{bottom:250.050000px;}
.y205{bottom:252.930000px;}
.y27b{bottom:253.470000px;}
.y11d{bottom:253.830000px;}
.yf7{bottom:255.450000px;}
.y343{bottom:256.530000px;}
.y9c{bottom:256.710000px;}
.y24a{bottom:257.456218px;}
.y1a0{bottom:257.790000px;}
.y12f{bottom:260.490000px;}
.y166{bottom:261.975000px;}
.y61{bottom:263.550000px;}
.y85{bottom:264.420000px;}
.y29d{bottom:265.710000px;}
.y18a{bottom:266.070000px;}
.y1ec{bottom:266.610000px;}
.y1da{bottom:267.150000px;}
.y1f4{bottom:267.510000px;}
.y326{bottom:268.050000px;}
.y2e0{bottom:268.230000px;}
.y233{bottom:270.390000px;}
.y1a8{bottom:272.370000px;}
.y21c{bottom:273.315000px;}
.y107{bottom:274.035000px;}
.y4a{bottom:275.835000px;}
.y308{bottom:276.195000px;}
.y36{bottom:276.915000px;}
.y152{bottom:278.175000px;}
.y1f1{bottom:279.435000px;}
.y27a{bottom:279.795000px;}
.y2be{bottom:280.335000px;}
.y1bd{bottom:280.515000px;}
.yd2{bottom:280.695000px;}
.y167{bottom:283.425000px;}
.yad{bottom:286.095000px;}
.y204{bottom:287.355000px;}
.y64{bottom:287.895000px;}
.yb5{bottom:288.255000px;}
.y342{bottom:290.775000px;}
.ye7{bottom:291.495000px;}
.y87{bottom:292.650000px;}
.y75{bottom:294.375000px;}
.y2df{bottom:294.555000px;}
.y19f{bottom:295.635000px;}
.y249{bottom:295.863981px;}
.y1c4{bottom:296.895000px;}
.y9b{bottom:298.155000px;}
.y29c{bottom:300.135000px;}
.y60{bottom:301.215000px;}
.y12e{bottom:301.935000px;}
.y16c{bottom:303.555000px;}
.y232{bottom:304.635000px;}
.y168{bottom:304.920000px;}
.y15b{bottom:304.995000px;}
.y279{bottom:306.075000px;}
.y2bd{bottom:306.615000px;}
.y11c{bottom:307.335000px;}
.y189{bottom:307.515000px;}
.y21b{bottom:307.695000px;}
.y1eb{bottom:308.055000px;}
.y1d9{bottom:308.595000px;}
.yf6{bottom:308.955000px;}
.y151{bottom:309.135000px;}
.y1af{bottom:310.035000px;}
.y307{bottom:310.395000px;}
.y1a7{bottom:313.815000px;}
.y106{bottom:315.435000px;}
.yd1{bottom:318.675000px;}
.y7{bottom:319.575000px;}
.y2de{bottom:320.655000px;}
.y1f0{bottom:320.835000px;}
.y248{bottom:320.952923px;}
.y203{bottom:321.735000px;}
.y341{bottom:324.975000px;}
.y35{bottom:325.875000px;}
.yac{bottom:327.495000px;}
.y1bc{bottom:328.755000px;}
.y49{bottom:329.295000px;}
.yb4{bottom:331.275000px;}
.y278{bottom:332.355000px;}
.ye6{bottom:332.895000px;}
.y16b{bottom:333.105000px;}
.yd0{bottom:333.435000px;}
.y29b{bottom:334.515000px;}
.y74{bottom:335.775000px;}
.y231{bottom:339.015000px;}
.y9a{bottom:339.555000px;}
.y150{bottom:340.275000px;}
.y21a{bottom:342.075000px;}
.y12d{bottom:343.335000px;}
.y306{bottom:344.775000px;}
.y1b2{bottom:344.955000px;}
.y247{bottom:346.351605px;}
.y15a{bottom:346.395000px;}
.y2dd{bottom:346.935000px;}
.y188{bottom:348.915000px;}
.y1d8{bottom:349.995000px;}
.yf5{bottom:350.355000px;}
.y1ae{bottom:351.435000px;}
.y5f{bottom:353.595000px;}
.y1a6{bottom:355.215000px;}
.y202{bottom:355.935000px;}
.y105{bottom:356.835000px;}
.y277{bottom:358.635000px;}
.y2bc{bottom:359.175000px;}
.y11b{bottom:360.615000px;}
.y1ea{bottom:361.515000px;}
.y134{bottom:362.235000px;}
.ycf{bottom:364.395000px;}
.yab{bottom:368.895000px;}
.y48{bottom:370.695000px;}
.y10{bottom:371.235000px;}
.y19e{bottom:371.415000px;}
.y246{bottom:371.776098px;}
.y2dc{bottom:373.215000px;}
.y230{bottom:373.395000px;}
.yb3{bottom:374.295000px;}
.y34{bottom:374.835000px;}
.y219{bottom:376.275000px;}
.y1bb{bottom:376.995000px;}
.y73{bottom:377.175000px;}
.y325{bottom:377.535000px;}
.y305{bottom:379.155000px;}
.y99{bottom:380.955000px;}
.y12c{bottom:384.555000px;}
.y275{bottom:384.915000px;}
.y2bb{bottom:385.455000px;}
.y19d{bottom:386.175000px;}
.y1b1{bottom:386.355000px;}
.y159{bottom:387.795000px;}
.y187{bottom:390.315000px;}
.y1f3{bottom:391.755000px;}
.y1ad{bottom:392.835000px;}
.y340{bottom:393.375000px;}
.yce{bottom:395.535000px;}
.y1a5{bottom:396.615000px;}
.y245{bottom:397.174780px;}
.y104{bottom:398.235000px;}
.y2db{bottom:399.495000px;}
.y14f{bottom:402.375000px;}
.y1e9{bottom:402.915000px;}
.y1d7{bottom:403.275000px;}
.yf4{bottom:403.635000px;}
.y5e{bottom:407.055000px;}
.y22f{bottom:407.775000px;}
.yaa{bottom:410.295000px;}
.y218{bottom:410.655000px;}
.y274{bottom:411.015000px;}
.y2ba{bottom:411.735000px;}
.y47{bottom:412.095000px;}
.y304{bottom:413.535000px;}
.y11a{bottom:414.075000px;}
.ye5{bottom:415.695000px;}
.y19c{bottom:417.135000px;}
.yb2{bottom:417.315000px;}
.y72{bottom:418.575000px;}
.y98{bottom:422.355000px;}
.y33{bottom:423.615000px;}
.y201{bottom:424.695000px;}
.y1ba{bottom:425.235000px;}
.y2da{bottom:425.775000px;}
.ycd{bottom:426.495000px;}
.y158{bottom:426.855000px;}
.y33f{bottom:427.575000px;}
.y186{bottom:429.195000px;}
.y14e{bottom:433.335000px;}
.y244{bottom:433.878973px;}
.y1ac{bottom:434.235000px;}
.y273{bottom:437.295000px;}
.y29a{bottom:437.475000px;}
.y2b8{bottom:437.835000px;}
.y12b{bottom:438.015000px;}
.y103{bottom:439.635000px;}
.y22e{bottom:441.975000px;}
.y1e8{bottom:444.315000px;}
.y1d6{bottom:444.675000px;}
.yf3{bottom:445.035000px;}
.y324{bottom:445.935000px;}
.y303{bottom:447.735000px;}
.y19b{bottom:448.275000px;}
.y2d9{bottom:452.055000px;}
.y157{bottom:452.415000px;}
.y46{bottom:453.495000px;}
.y1c3{bottom:457.095000px;}
.ycc{bottom:457.635000px;}
.y200{bottom:459.075000px;}
.y71{bottom:459.975000px;}
.y185{bottom:460.155000px;}
.y5d{bottom:460.335000px;}
.y33e{bottom:461.775000px;}
.y271{bottom:463.575000px;}
.y97{bottom:463.755000px;}
.y2b7{bottom:464.115000px;}
.y14d{bottom:464.295000px;}
.y119{bottom:467.355000px;}
.ye4{bottom:469.155000px;}
.y299{bottom:471.855000px;}
.y32{bottom:472.575000px;}
.y243{bottom:473.061086px;}
.y1b9{bottom:473.475000px;}
.y184{bottom:474.915000px;}
.y1ab{bottom:475.635000px;}
.y22d{bottom:476.355000px;}
.y2d8{bottom:478.155000px;}
.y19a{bottom:479.235000px;}
.y12a{bottom:479.415000px;}
.y323{bottom:480.135000px;}
.y102{bottom:481.035000px;}
.y302{bottom:482.115000px;}
.y1d5{bottom:486.075000px;}
.y1f2{bottom:486.435000px;}
.y156{bottom:488.415000px;}
.y15e{bottom:488.700000px;}
.yc7{bottom:489.495000px;}
.y26d{bottom:489.855000px;}
.y2b6{bottom:490.395000px;}
.y1ff{bottom:493.275000px;}
.y45{bottom:494.895000px;}
.y14c{bottom:495.435000px;}
.y33d{bottom:495.975000px;}
.y1e7{bottom:497.595000px;}
.yf2{bottom:498.495000px;}
.y70{bottom:501.375000px;}
.y5c{bottom:501.735000px;}
.yb1{bottom:503.355000px;}
.y96{bottom:505.155000px;}
.y183{bottom:505.875000px;}
.y298{bottom:506.235000px;}
.y199{bottom:510.375000px;}
.ye3{bottom:510.555000px;}
.y22c{bottom:510.735000px;}
.y217{bottom:513.615000px;}
.y321{bottom:514.335000px;}
.y301{bottom:516.495000px;}
.y2b5{bottom:516.675000px;}
.ya9{bottom:517.035000px;}
.y2d7{bottom:519.195000px;}
.yc9{bottom:520.455000px;}
.y118{bottom:520.815000px;}
.y31{bottom:521.535000px;}
.y1b8{bottom:521.715000px;}
.y101{bottom:522.435000px;}
.y14b{bottom:526.395000px;}
.y1fe{bottom:527.655000px;}
.y33c{bottom:530.175000px;}
.y44{bottom:536.295000px;}
.y182{bottom:537.015000px;}
.y1e6{bottom:538.995000px;}
.y1d4{bottom:539.535000px;}
.yf1{bottom:539.895000px;}
.y297{bottom:540.615000px;}
.y197{bottom:541.335000px;}
.y6f{bottom:542.775000px;}
.y2b3{bottom:542.955000px;}
.y5b{bottom:543.135000px;}
.y22b{bottom:545.115000px;}
.y2d6{bottom:545.475000px;}
.y95{bottom:546.555000px;}
.y216{bottom:547.995000px;}
.y31f{bottom:548.535000px;}
.y300{bottom:550.875000px;}
.ye2{bottom:551.955000px;}
.y14a{bottom:557.565000px;}
.ya8{bottom:558.465000px;}
.y1fd{bottom:562.065000px;}
.y129{bottom:562.245000px;}
.y100{bottom:563.865000px;}
.y33b{bottom:564.405000px;}
.y181{bottom:568.005000px;}
.yc6{bottom:569.265000px;}
.y1b7{bottom:569.985000px;}
.y30{bottom:570.345000px;}
.y242{bottom:572.371482px;}
.y196{bottom:572.505000px;}
.y117{bottom:574.305000px;}
.y296{bottom:574.845000px;}
.y133{bottom:575.925000px;}
.y43{bottom:577.725000px;}
.y22a{bottom:579.345000px;}
.y1d3{bottom:580.965000px;}
.yf0{bottom:581.325000px;}
.y215{bottom:582.405000px;}
.y9{bottom:583.845000px;}
.y2b2{bottom:584.025000px;}
.y6e{bottom:584.205000px;}
.y5a{bottom:584.565000px;}
.y2ff{bottom:585.105000px;}
.y2d5{bottom:586.545000px;}
.y94{bottom:587.985000px;}
.y149{bottom:588.525000px;}
.y31e{bottom:589.425000px;}
.y1e5{bottom:592.485000px;}
.y26c{bottom:593.205000px;}
.ye1{bottom:593.385000px;}
.y1b{bottom:596.445000px;}
.y241{bottom:598.389644px;}
.y33a{bottom:598.605000px;}
.y180{bottom:599.145000px;}
.ya7{bottom:599.865000px;}
.y2fd{bottom:602.745000px;}
.yc5{bottom:603.285000px;}
.y195{bottom:603.465000px;}
.y128{bottom:603.645000px;}
.yff{bottom:605.265000px;}
.y295{bottom:609.225000px;}
.y2b1{bottom:610.305000px;}
.y26b{bottom:610.845000px;}
.y2d4{bottom:612.825000px;}
.y229{bottom:613.725000px;}
.y214{bottom:616.785000px;}
.y1b0{bottom:617.325000px;}
.y1b6{bottom:618.225000px;}
.y42{bottom:619.125000px;}
.y2f{bottom:619.305000px;}
.y148{bottom:619.665000px;}
.y1d2{bottom:622.365000px;}
.y31d{bottom:623.625000px;}
.y6d{bottom:625.605000px;}
.y59{bottom:625.965000px;}
.y116{bottom:627.585000px;}
.y93{bottom:629.385000px;}
.y17f{bottom:630.105000px;}
.y1fc{bottom:630.645000px;}
.y1e4{bottom:633.885000px;}
.yef{bottom:634.785000px;}
.y194{bottom:635.325000px;}
.y2ae{bottom:636.405000px;}
.y26a{bottom:636.945000px;}
.y339{bottom:639.645000px;}
.ya6{bottom:641.265000px;}
.y294{bottom:643.605000px;}
.y127{bottom:645.045000px;}
.ye0{bottom:646.665000px;}
.y228{bottom:648.105000px;}
.y147{bottom:650.625000px;}
.y213{bottom:650.985000px;}
.y2d3{bottom:653.865000px;}
.yc4{bottom:655.485000px;}
.y31c{bottom:657.825000px;}
.yfe{bottom:658.725000px;}
.y41{bottom:660.525000px;}
.y17e{bottom:661.245000px;}
.y269{bottom:663.225000px;}
.y6c{bottom:664.665000px;}
.y1fb{bottom:665.025000px;}
.y1b5{bottom:666.465000px;}
.y58{bottom:667.365000px;}
.y2e{bottom:668.265000px;}
.y92{bottom:670.785000px;}
.y338{bottom:673.845000px;}
.y1e3{bottom:675.285000px;}
.y1d1{bottom:675.825000px;}
.yee{bottom:676.185000px;}
.y293{bottom:677.985000px;}
.y2fb{bottom:678.705000px;}
.y2d2{bottom:680.145000px;}
.y115{bottom:681.045000px;}
.y146{bottom:681.765000px;}
.ya5{bottom:682.665000px;}
.y212{bottom:685.365000px;}
.y193{bottom:685.545000px;}
.y1a4{bottom:686.445000px;}
.ydf{bottom:688.065000px;}
.y268{bottom:689.505000px;}
.y6b{bottom:689.865000px;}
.y31b{bottom:692.025000px;}
.y17d{bottom:692.205000px;}
.yc3{bottom:696.885000px;}
.y126{bottom:698.505000px;}
.y1fa{bottom:699.405000px;}
.yfd{bottom:700.125000px;}
.y227{bottom:701.385000px;}
.y40{bottom:701.925000px;}
.y2d1{bottom:706.425000px;}
.y337{bottom:708.045000px;}
.y57{bottom:708.765000px;}
.y91{bottom:712.185000px;}
.y145{bottom:712.725000px;}
.y2fa{bottom:713.625000px;}
.y1b4{bottom:714.705000px;}
.y267{bottom:715.785000px;}
.y2d{bottom:717.045000px;}
.y1d0{bottom:717.225000px;}
.yed{bottom:717.585000px;}
.y192{bottom:719.565000px;}
.y211{bottom:719.745000px;}
.y114{bottom:722.445000px;}
.y17c{bottom:723.345000px;}
.ya4{bottom:724.065000px;}
.y31a{bottom:726.225000px;}
.y1c2{bottom:727.845000px;}
.y1e2{bottom:728.745000px;}
.yde{bottom:729.465000px;}
.y2d0{bottom:732.525000px;}
.y1f9{bottom:733.785000px;}
.y6a{bottom:735.945000px;}
.y7a{bottom:736.200000px;}
.yc2{bottom:738.105000px;}
.y125{bottom:739.905000px;}
.yfc{bottom:741.525000px;}
.y266{bottom:742.065000px;}
.y336{bottom:742.245000px;}
.y3f{bottom:743.325000px;}
.y144{bottom:743.865000px;}
.y292{bottom:746.565000px;}
.y226{bottom:749.265000px;}
.y56{bottom:750.165000px;}
.y191{bottom:753.225000px;}
.y90{bottom:753.585000px;}
.y210{bottom:754.125000px;}
.y17b{bottom:754.305000px;}
.y1cf{bottom:758.625000px;}
.y2cf{bottom:758.805000px;}
.y319{bottom:760.425000px;}
.y113{bottom:763.845000px;}
.ya3{bottom:765.465000px;}
.y2c{bottom:766.005000px;}
.y1f8{bottom:768.165000px;}
.y265{bottom:768.345000px;}
.y1c1{bottom:769.245000px;}
.yec{bottom:770.865000px;}
.y143{bottom:774.825000px;}
.yc1{bottom:779.505000px;}
.y291{bottom:780.945000px;}
.y124{bottom:781.305000px;}
.y1e1{bottom:782.025000px;}
.ydd{bottom:782.925000px;}
.y335{bottom:783.285000px;}
.y3e{bottom:784.725000px;}
.y2ce{bottom:785.085000px;}
.y17a{bottom:785.445000px;}
.y2ad{bottom:785.805000px;}
.y20f{bottom:788.325000px;}
.y190{bottom:791.205000px;}
.y55{bottom:791.565000px;}
.y2f9{bottom:792.285000px;}
.y264{bottom:794.445000px;}
.y318{bottom:794.625000px;}
.y8f{bottom:794.805000px;}
.y225{bottom:798.225000px;}
.y1f7{bottom:802.365000px;}
.y2ac{bottom:803.265000px;}
.y112{bottom:805.245000px;}
.y142{bottom:805.965000px;}
.ya2{bottom:806.865000px;}
.y2cd{bottom:811.365000px;}
.y23d{bottom:811.759355px;}
.y1ce{bottom:811.905000px;}
.yeb{bottom:812.265000px;}
.y2b{bottom:814.785000px;}
.y290{bottom:815.325000px;}
.y179{bottom:816.405000px;}
.y334{bottom:817.485000px;}
.y2f8{bottom:818.565000px;}
.y239{bottom:819.825000px;}
.y263{bottom:820.725000px;}
.yc0{bottom:820.905000px;}
.y123{bottom:822.705000px;}
.y1e0{bottom:823.425000px;}
.ydc{bottom:824.325000px;}
.y3d{bottom:826.125000px;}
.y316{bottom:828.825000px;}
.y2ab{bottom:829.545000px;}
.y28e{bottom:832.785000px;}
.y54{bottom:832.965000px;}
.y8e{bottom:836.205000px;}
.y140{bottom:836.925000px;}
.y2cb{bottom:837.645000px;}
.y2f7{bottom:844.890000px;}
.y111{bottom:846.690000px;}
.y224{bottom:847.050000px;}
.y178{bottom:847.590000px;}
.ya1{bottom:848.310000px;}
.y238{bottom:850.470000px;}
.y333{bottom:851.730000px;}
.y1cd{bottom:853.350000px;}
.y2aa{bottom:855.870000px;}
.y20e{bottom:857.130000px;}
.y28d{bottom:859.110000px;}
.ybf{bottom:862.350000px;}
.y1f6{bottom:862.530000px;}
.y315{bottom:863.070000px;}
.y2a{bottom:863.790000px;}
.y2ca{bottom:863.970000px;}
.y122{bottom:864.150000px;}
.y1df{bottom:864.870000px;}
.ydb{bottom:865.770000px;}
.y3c{bottom:867.570000px;}
.y13f{bottom:868.110000px;}
.y2f6{bottom:871.170000px;}
.y262{bottom:873.330000px;}
.y53{bottom:874.410000px;}
.y8d{bottom:877.650000px;}
.y177{bottom:878.550000px;}
.y2a9{bottom:882.150000px;}
.y28c{bottom:885.390000px;}
.y332{bottom:885.930000px;}
.y110{bottom:888.090000px;}
.y223{bottom:888.450000px;}
.ya0{bottom:889.710000px;}
.y2c9{bottom:890.070000px;}
.y20d{bottom:891.510000px;}
.y1cc{bottom:894.750000px;}
.y314{bottom:897.270000px;}
.y2f5{bottom:897.450000px;}
.y13e{bottom:899.070000px;}
.y261{bottom:899.610000px;}
.ybe{bottom:903.750000px;}
.y121{bottom:905.550000px;}
.yda{bottom:907.170000px;}
.y2a7{bottom:908.250000px;}
.y3b{bottom:908.970000px;}
.y176{bottom:909.690000px;}
.y28b{bottom:911.490000px;}
.y29{bottom:912.750000px;}
.y52{bottom:915.810000px;}
.y2c8{bottom:916.350000px;}
.y1de{bottom:918.330000px;}
.yfb{bottom:919.050000px;}
.y331{bottom:920.130000px;}
.y2f4{bottom:923.550000px;}
.y25f{bottom:925.890000px;}
.y10f{bottom:929.490000px;}
.y13d{bottom:930.210000px;}
.y8c{bottom:931.110000px;}
.y313{bottom:931.470000px;}
.y222{bottom:937.410000px;}
.y28a{bottom:937.770000px;}
.y28{bottom:938.310000px;}
.y13{bottom:939.930000px;}
.y174{bottom:940.650000px;}
.y20c{bottom:944.790000px;}
.ybd{bottom:945.150000px;}
.y120{bottom:946.950000px;}
.y1cb{bottom:948.210000px;}
.y2a6{bottom:949.290000px;}
.y2f2{bottom:949.830000px;}
.y3a{bottom:950.370000px;}
.y25e{bottom:951.990000px;}
.y51{bottom:957.210000px;}
.y2c7{bottom:957.390000px;}
.y1dd{bottom:960.090000px;}
.yd9{bottom:960.450000px;}
.y13c{bottom:961.170000px;}
.y289{bottom:964.050000px;}
.y312{bottom:965.670000px;}
.y5{bottom:967.290000px;}
.y237{bottom:970.530000px;}
.y10e{bottom:970.890000px;}
.y8b{bottom:972.510000px;}
.y173{bottom:973.230000px;}
.y2a5{bottom:975.570000px;}
.y2e9{bottom:976.110000px;}
.y4{bottom:977.730000px;}
.y25c{bottom:978.270000px;}
.y2c6{bottom:983.670000px;}
.y20b{bottom:986.190000px;}
.y221{bottom:986.370000px;}
.ybc{bottom:988.350000px;}
.y1ca{bottom:989.610000px;}
.y288{bottom:990.330000px;}
.y13b{bottom:992.310000px;}
.y330{bottom:995.370000px;}
.y310{bottom:999.870000px;}
.yd8{bottom:1001.850000px;}
.y254{bottom:1004.550000px;}
.y171{bottom:1005.090000px;}
.y27{bottom:1007.790000px;}
.y220{bottom:1011.930000px;}
.y10d{bottom:1012.290000px;}
.y8a{bottom:1013.910000px;}
.y50{bottom:1014.630000px;}
.y287{bottom:1016.610000px;}
.y18f{bottom:1023.270000px;}
.y138{bottom:1023.990000px;}
.y2c4{bottom:1024.710000px;}
.y20a{bottom:1027.590000px;}
.y3{bottom:1029.750000px;}
.ybb{bottom:1033.530000px;}
.y30b{bottom:1034.070000px;}
.y32f{bottom:1036.410000px;}
.y286{bottom:1042.890000px;}
.yd7{bottom:1043.250000px;}
.y10c{bottom:1053.690000px;}
.y13a{bottom:1055.130000px;}
.y89{bottom:1055.310000px;}
.y1c9{bottom:1059.090000px;}
.y209{bottom:1061.970000px;}
.y283{bottom:1068.990000px;}
.y26{bottom:1072.230000px;}
.y2{bottom:1078.710000px;}
.y4f{bottom:1079.070000px;}
.yba{bottom:1084.110000px;}
.y170{bottom:1086.450000px;}
.y252{bottom:1090.410000px;}
.y10b{bottom:1095.090000px;}
.y69{bottom:1096.710000px;}
.y1c8{bottom:1098.150000px;}
.y137{bottom:1105.350000px;}
.y16f{bottom:1105.530000px;}
.y2e8{bottom:1111.110000px;}
.y32c{bottom:1120.650000px;}
.y1{bottom:1121.190000px;}
.y2a1{bottom:1124.640000px;}
.y2e7{bottom:1128.600000px;}
.y25{bottom:1135.260000px;}
.y4e{bottom:1138.140000px;}
.y136{bottom:1139.400000px;}
.y22{bottom:1195.740000px;}
.h2b{height:-17.419355px;}
.h35{height:25.380000px;}
.h42{height:25.416000px;}
.h34{height:25.560000px;}
.h36{height:25.596000px;}
.h17{height:29.678906px;}
.h32{height:30.060000px;}
.h39{height:30.240000px;}
.h21{height:30.960000px;}
.h27{height:30.996000px;}
.h20{height:31.140000px;}
.h23{height:31.176000px;}
.h26{height:32.580000px;}
.h4a{height:33.300000px;}
.h47{height:33.480000px;}
.h48{height:33.516000px;}
.h44{height:34.200000px;}
.h45{height:40.140000px;}
.h49{height:40.176000px;}
.h3c{height:40.320000px;}
.h3e{height:40.356000px;}
.hd{height:43.920000px;}
.h19{height:44.534180px;}
.h40{height:46.296000px;}
.h2c{height:47.001839px;}
.h15{height:53.755312px;}
.h6{height:54.628594px;}
.h3f{height:55.825312px;}
.h16{height:58.651172px;}
.h2a{height:59.378906px;}
.h30{height:59.774078px;}
.h22{height:60.226875px;}
.h1f{height:62.100000px;}
.hf{height:62.327813px;}
.h1b{height:64.546875px;}
.h1e{height:64.978594px;}
.h1d{height:66.757500px;}
.h3b{height:68.362734px;}
.ha{height:69.086250px;}
.h25{height:69.473320px;}
.h1a{height:69.592078px;}
.h29{height:70.628906px;}
.h3{height:70.664062px;}
.h14{height:72.562500px;}
.h28{height:74.704922px;}
.h1c{height:75.093750px;}
.h2e{height:75.408387px;}
.h31{height:76.633433px;}
.h13{height:78.973945px;}
.h4b{height:83.520000px;}
.h4{height:84.898125px;}
.h37{height:84.996000px;}
.h33{height:85.140000px;}
.h38{height:85.176000px;}
.h8{height:87.859687px;}
.h2f{height:93.492788px;}
.h11{height:95.400000px;}
.h12{height:96.508125px;}
.h7{height:97.560000px;}
.h41{height:99.216000px;}
.h46{height:107.676000px;}
.hc{height:112.640625px;}
.h43{height:116.640000px;}
.h3a{height:122.076000px;}
.h3d{height:131.040000px;}
.h2{height:141.328125px;}
.he{height:157.140000px;}
.hb{height:181.080000px;}
.h5{height:200.370000px;}
.h10{height:252.030000px;}
.h9{height:264.630000px;}
.h18{height:323.820000px;}
.h24{height:364.320000px;}
.h2d{height:594.443979px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w37{width:27.180000px;}
.w36{width:27.396000px;}
.w4f{width:27.576000px;}
.w3c{width:30.240000px;}
.w3b{width:30.276000px;}
.w40{width:31.140000px;}
.w41{width:31.320000px;}
.w32{width:34.020000px;}
.w2d{width:34.380000px;}
.w46{width:35.280000px;}
.w2b{width:35.820000px;}
.w30{width:36.000000px;}
.w51{width:36.360000px;}
.w50{width:36.540000px;}
.w42{width:41.796000px;}
.w47{width:44.280000px;}
.w35{width:44.460000px;}
.w48{width:44.496000px;}
.w2c{width:45.036000px;}
.w31{width:45.216000px;}
.w49{width:47.880000px;}
.w43{width:48.960000px;}
.w3a{width:50.580000px;}
.w3d{width:50.760000px;}
.w4d{width:62.640000px;}
.w17{width:85.500000px;}
.w12{width:92.196000px;}
.w13{width:93.456000px;}
.wb{width:95.040000px;}
.w11{width:95.220000px;}
.wf{width:95.616000px;}
.w10{width:102.420000px;}
.w18{width:104.436000px;}
.w23{width:117.000000px;}
.w24{width:122.796000px;}
.w25{width:126.238743px;}
.w16{width:127.296000px;}
.w20{width:127.656000px;}
.w15{width:138.240000px;}
.w27{width:147.125884px;}
.w1b{width:148.860000px;}
.w1c{width:148.896000px;}
.w1d{width:155.730000px;}
.w1e{width:180.360000px;}
.wd{width:187.410000px;}
.we{width:188.670000px;}
.wc{width:198.030000px;}
.w21{width:201.630000px;}
.w4b{width:219.270000px;}
.w1a{width:222.870000px;}
.w14{width:223.230000px;}
.w22{width:239.790000px;}
.w1f{width:255.315000px;}
.w3{width:309.090000px;}
.w9{width:318.270000px;}
.w4{width:318.315000px;}
.w6{width:367.455000px;}
.w5{width:380.415000px;}
.w26{width:403.590375px;}
.w8{width:405.975000px;}
.w4a{width:456.015000px;}
.w45{width:456.375000px;}
.w3e{width:510.915000px;}
.w39{width:511.275000px;}
.w44{width:519.915000px;}
.w3f{width:520.275000px;}
.w2e{width:521.715000px;}
.w33{width:521.895000px;}
.w2a{width:522.075000px;}
.w2f{width:522.255000px;}
.w38{width:529.455000px;}
.w34{width:529.815000px;}
.wa{width:540.000000px;}
.w52{width:561.495000px;}
.w4e{width:561.855000px;}
.w4c{width:609.405000px;}
.w29{width:676.365000px;}
.w28{width:676.949827px;}
.w19{width:679.500000px;}
.w7{width:721.950000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x67{left:5.220000px;}
.x27{left:8.100000px;}
.x21{left:9.756000px;}
.x6{left:10.800000px;}
.x2c{left:13.320000px;}
.xf{left:15.660000px;}
.x56{left:17.460000px;}
.x3a{left:19.260000px;}
.x31{left:20.550000px;}
.x3d{left:21.780000px;}
.x32{left:23.625000px;}
.x30{left:25.740000px;}
.x79{left:27.720000px;}
.x3e{left:29.340000px;}
.xd{left:30.780000px;}
.x47{left:32.580000px;}
.x38{left:34.050000px;}
.x36{left:36.000000px;}
.x20{left:37.152000px;}
.x2f{left:38.880000px;}
.x44{left:39.960000px;}
.x3c{left:41.400000px;}
.x33{left:43.380000px;}
.x4a{left:46.614000px;}
.x52{left:48.054000px;}
.x48{left:49.680000px;}
.x4c{left:51.120000px;}
.x50{left:53.100000px;}
.x4d{left:54.540000px;}
.x54{left:56.385000px;}
.x4b{left:57.600000px;}
.x49{left:60.150000px;}
.x59{left:61.380000px;}
.x22{left:64.050000px;}
.x9{left:66.780000px;}
.x4f{left:67.854000px;}
.x51{left:70.374000px;}
.x2a{left:75.240000px;}
.x4e{left:80.454000px;}
.x13{left:81.720000px;}
.x7{left:83.700000px;}
.x40{left:87.660000px;}
.x15{left:106.416000px;}
.x1{left:108.035987px;}
.x43{left:111.414000px;}
.x23{left:121.890000px;}
.x1a{left:124.595987px;}
.x65{left:125.617795px;}
.x5b{left:135.035987px;}
.x41{left:143.025000px;}
.x14{left:145.650000px;}
.x64{left:148.898173px;}
.x17{left:153.029987px;}
.x16{left:158.034000px;}
.x1e{left:161.129987px;}
.xe{left:179.130000px;}
.x25{left:188.129987px;}
.x62{left:201.712394px;}
.x28{left:203.430000px;}
.x73{left:213.159000px;}
.x8{left:224.355000px;}
.xa{left:230.250000px;}
.x4{left:231.330000px;}
.x61{left:234.238743px;}
.x66{left:235.839000px;}
.x5f{left:238.529987px;}
.x11{left:252.570000px;}
.x10{left:266.250000px;}
.x42{left:268.740000px;}
.x12{left:273.630000px;}
.x53{left:288.390000px;}
.x2b{left:299.055000px;}
.xb{left:303.195000px;}
.x57{left:309.675000px;}
.x5c{left:312.194987px;}
.x3{left:321.735000px;}
.x35{left:331.275000px;}
.x5d{left:357.194987px;}
.xc{left:360.975000px;}
.x1d{left:379.874987px;}
.x34{left:390.494987px;}
.x5a{left:397.154987px;}
.x1b{left:399.134987px;}
.x1c{left:401.834987px;}
.x26{left:407.234987px;}
.x5e{left:409.214987px;}
.x19{left:414.434987px;}
.x55{left:416.055000px;}
.x58{left:426.675000px;}
.x5{left:435.135000px;}
.x2{left:446.474987px;}
.x37{left:469.515000px;}
.x45{left:479.775000px;}
.x2d{left:496.695000px;}
.x77{left:565.125000px;}
.x29{left:588.885000px;}
.x39{left:596.805000px;}
.x78{left:601.305000px;}
.x6f{left:620.025000px;}
.x46{left:628.665000px;}
.x68{left:631.185000px;}
.x63{left:637.823943px;}
.x6c{left:638.925000px;}
.x7a{left:646.305000px;}
.x1f{left:648.104987px;}
.x74{left:661.245000px;}
.x69{left:667.905000px;}
.x70{left:671.505000px;}
.x3b{left:682.305000px;}
.x2e{left:684.105000px;}
.x7b{left:691.305000px;}
.x75{left:693.285000px;}
.x7d{left:698.910000px;}
.x71{left:702.690000px;}
.x6d{left:712.230000px;}
.x6a{left:713.670000px;}
.x7c{left:718.890000px;}
.x7e{left:726.990000px;}
.x72{left:733.650000px;}
.x76{left:735.810000px;}
.x6e{left:740.310000px;}
.x6b{left:750.390000px;}
.x7f{left:764.250000px;}
.x24{left:767.129987px;}
.x18{left:776.129987px;}
.x60{left:785.309987px;}
.x3f{left:787.649987px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls22{letter-spacing:-3.840000pt;}
.ls1c{letter-spacing:-3.200000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls26{letter-spacing:-0.757333pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.286933pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.135467pt;}
.ls29{letter-spacing:-0.117867pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.033280pt;}
.lse{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.020480pt;}
.ls1b{letter-spacing:0.032000pt;}
.ls24{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.055065pt;}
.ls10{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.227733pt;}
.ls28{letter-spacing:0.227840pt;}
.ls16{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.272533pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls2d{letter-spacing:5.391360pt;}
.ls19{letter-spacing:7.973120pt;}
.ls23{letter-spacing:18.693120pt;}
.ls2b{letter-spacing:34.831360pt;}
.ls21{letter-spacing:56.891307pt;}
.ls12{letter-spacing:57.088000pt;}
.ls0{letter-spacing:752.106667pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1a{word-spacing:-53.120000pt;}
.ws0{word-spacing:-32.128000pt;}
.ws1{word-spacing:-26.880000pt;}
.ws2{word-spacing:-26.432000pt;}
.ws1d{word-spacing:-21.313280pt;}
.ws8{word-spacing:-20.783360pt;}
.ws14{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.233173pt;}
.ws19{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws10{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.296000pt;}
.ws4{word-spacing:-15.039893pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.672427pt;}
.ws15{word-spacing:-14.486933pt;}
.ws1c{word-spacing:-14.080000pt;}
.ws22{word-spacing:-13.534613pt;}
.ws1e{word-spacing:-13.306880pt;}
.ws12{word-spacing:-13.280000pt;}
.ws21{word-spacing:-13.019947pt;}
.ws20{word-spacing:-12.974080pt;}
.ws1f{word-spacing:-12.953600pt;}
.ws1b{word-spacing:-12.160000pt;}
.ws18{word-spacing:-10.720000pt;}
.ws9{word-spacing:0.000000pt;}
.wsd{word-spacing:42.928000pt;}
.wse{word-spacing:158.357333pt;}
.ws16{word-spacing:175.546667pt;}
.ws17{word-spacing:521.200000pt;}
._6{margin-left:-14.165333pt;}
._5{margin-left:-12.437333pt;}
._4{margin-left:-10.709333pt;}
._9{margin-left:-7.189333pt;}
._8{margin-left:-5.525333pt;}
._15{margin-left:-4.608000pt;}
._7{margin-left:-3.605333pt;}
._a{margin-left:-2.304000pt;}
._0{margin-left:-1.347840pt;}
._1{width:1.219840pt;}
._2{width:2.361387pt;}
._b{width:4.032000pt;}
._c{width:5.312000pt;}
._10{width:6.332160pt;}
._11{width:7.552000pt;}
._14{width:8.490667pt;}
._16{width:9.667840pt;}
._12{width:10.624000pt;}
._d{width:11.520000pt;}
._e{width:12.686507pt;}
._13{width:14.065493pt;}
._19{width:15.062187pt;}
._f{width:17.006507pt;}
._17{width:18.001493pt;}
._18{width:19.694507pt;}
._1c{width:21.312000pt;}
._1d{width:22.208000pt;}
._1a{width:23.744000pt;}
._1b{width:24.746667pt;}
._23{width:26.005333pt;}
._2e{width:27.157333pt;}
._22{width:28.672000pt;}
._26{width:29.568000pt;}
._27{width:30.505813pt;}
._1e{width:32.896000pt;}
._2a{width:34.368000pt;}
._2b{width:35.946667pt;}
._2c{width:39.872000pt;}
._2d{width:41.152000pt;}
._28{width:47.104000pt;}
._29{width:48.330667pt;}
._2f{width:53.760000pt;}
._24{width:62.592000pt;}
._25{width:63.936000pt;}
._21{width:87.776000pt;}
._1f{width:185.440000pt;}
._31{width:446.197333pt;}
._30{width:447.168000pt;}
._20{width:568.693333pt;}
._32{width:576.458667pt;}
._3{width:1873.486933pt;}
.fs7{font-size:26.880000pt;}
.fsb{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:50.659702pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsf{font-size:64.425925pt;}
.fs2{font-size:74.880000pt;}
.fs9{font-size:75.008000pt;}
.fsd{font-size:82.597340pt;}
.fs6{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fse{font-size:100.768755pt;}
.fs0{font-size:128.000000pt;}
.y12{bottom:-24.640000pt;}
.y0{bottom:0.000000pt;}
.y23e{bottom:0.688311pt;}
.y281{bottom:3.994667pt;}
.y25d{bottom:4.000000pt;}
.y32d{bottom:4.026667pt;}
.y2cc{bottom:4.040000pt;}
.y260{bottom:4.320000pt;}
.y2b9{bottom:4.480000pt;}
.y2a3{bottom:4.960000pt;}
.y2f3{bottom:6.400000pt;}
.y27d{bottom:6.560000pt;}
.y2e5{bottom:6.714667pt;}
.y270{bottom:6.720000pt;}
.y2a4{bottom:7.520000pt;}
.y253{bottom:8.480000pt;}
.y276{bottom:8.640000pt;}
.y282{bottom:8.794667pt;}
.y272{bottom:8.800000pt;}
.y28f{bottom:8.840000pt;}
.y2fc{bottom:10.240000pt;}
.y25a{bottom:10.720000pt;}
.y2ee{bottom:11.680000pt;}
.y30f{bottom:12.000000pt;}
.y25b{bottom:12.480000pt;}
.ycb{bottom:12.640000pt;}
.yca{bottom:12.800000pt;}
.y198{bottom:12.826667pt;}
.y141{bottom:12.840000pt;}
.y2f0{bottom:13.440000pt;}
.y175{bottom:14.080000pt;}
.y1a{bottom:14.560000pt;}
.y322{bottom:15.680000pt;}
.y88{bottom:15.706667pt;}
.y311{bottom:15.840000pt;}
.y32e{bottom:15.866667pt;}
.y317{bottom:15.880000pt;}
.y14{bottom:16.480000pt;}
.y258{bottom:18.400000pt;}
.y257{bottom:20.000000pt;}
.y259{bottom:20.160000pt;}
.y251{bottom:20.787273pt;}
.y2f1{bottom:20.960000pt;}
.yf{bottom:21.440000pt;}
.y2fe{bottom:21.760000pt;}
.y320{bottom:21.786667pt;}
.y327{bottom:21.800000pt;}
.y2a8{bottom:21.920000pt;}
.y2b4{bottom:21.946667pt;}
.y24{bottom:24.672000pt;}
.y2ed{bottom:24.960000pt;}
.yc8{bottom:26.400000pt;}
.y139{bottom:26.560000pt;}
.y23f{bottom:26.568811pt;}
.y2a2{bottom:26.720000pt;}
.y26f{bottom:27.200000pt;}
.y285{bottom:27.360000pt;}
.y19{bottom:31.200000pt;}
.y2ec{bottom:32.480000pt;}
.y30e{bottom:37.920000pt;}
.y2ef{bottom:39.200000pt;}
.y2b0{bottom:39.840000pt;}
.y172{bottom:40.320000pt;}
.y256{bottom:40.640000pt;}
.y16a{bottom:41.280000pt;}
.y86{bottom:42.306667pt;}
.y2c5{bottom:44.640000pt;}
.y18{bottom:47.680000pt;}
.y26e{bottom:47.840000pt;}
.y284{bottom:47.866667pt;}
.y6{bottom:52.000000pt;}
.y2eb{bottom:53.920000pt;}
.y30d{bottom:55.840000pt;}
.y2af{bottom:57.760000pt;}
.y7b{bottom:57.893333pt;}
.ye{bottom:58.080000pt;}
.y23{bottom:58.432000pt;}
.y250{bottom:59.222568pt;}
.y255{bottom:61.120000pt;}
.y20{bottom:62.560000pt;}
.y169{bottom:64.546667pt;}
.y21{bottom:67.200000pt;}
.y8{bottom:69.280000pt;}
.y15{bottom:73.952000pt;}
.y2ea{bottom:74.560000pt;}
.y7c{bottom:75.613333pt;}
.y17{bottom:77.434667pt;}
.y15f{bottom:80.160000pt;}
.y30c{bottom:81.786667pt;}
.y1f{bottom:82.080000pt;}
.y24f{bottom:93.225139pt;}
.y7d{bottom:93.346667pt;}
.yd{bottom:94.880000pt;}
.y160{bottom:99.226667pt;}
.yb9{bottom:100.512000pt;}
.y10a{bottom:101.152000pt;}
.yd6{bottom:101.632000pt;}
.y4d{bottom:102.752000pt;}
.y79{bottom:103.872000pt;}
.yb0{bottom:107.072000pt;}
.y2e6{bottom:108.512000pt;}
.y68{bottom:108.672000pt;}
.y32a{bottom:110.592000pt;}
.y7e{bottom:111.040000pt;}
.y1e{bottom:111.200000pt;}
.y2a0{bottom:114.112000pt;}
.y2c3{bottom:114.592000pt;}
.y1ef{bottom:116.032000pt;}
.yfa{bottom:116.672000pt;}
.y16{bottom:117.114667pt;}
.y9f{bottom:117.792000pt;}
.y236{bottom:118.272000pt;}
.y161{bottom:118.333333pt;}
.y23c{bottom:119.232000pt;}
.y1c0{bottom:120.832000pt;}
.y132{bottom:121.152000pt;}
.y1c7{bottom:121.472000pt;}
.y18d{bottom:126.112000pt;}
.y39{bottom:126.752000pt;}
.y63{bottom:127.072000pt;}
.y24e{bottom:127.232300pt;}
.y16e{bottom:127.392000pt;}
.y1a3{bottom:128.032000pt;}
.y7f{bottom:128.773333pt;}
.y11f{bottom:130.752000pt;}
.yc{bottom:131.680000pt;}
.y2e4{bottom:131.872000pt;}
.y280{bottom:132.032000pt;}
.y135{bottom:132.192000pt;}
.y208{bottom:133.312000pt;}
.y162{bottom:137.413333pt;}
.yea{bottom:137.946667pt;}
.y11{bottom:138.400000pt;}
.yd5{bottom:138.426667pt;}
.y78{bottom:140.666667pt;}
.y329{bottom:140.986667pt;}
.yb8{bottom:141.306667pt;}
.yaf{bottom:143.866667pt;}
.y29f{bottom:144.666667pt;}
.y2c2{bottom:145.146667pt;}
.y67{bottom:145.466667pt;}
.y80{bottom:146.466667pt;}
.y109{bottom:148.666667pt;}
.y23b{bottom:149.626667pt;}
.y24d{bottom:149.671244pt;}
.y15d{bottom:150.106667pt;}
.y4c{bottom:150.266667pt;}
.y21f{bottom:151.386667pt;}
.y32b{bottom:151.706667pt;}
.y1ee{bottom:152.826667pt;}
.y1dc{bottom:153.146667pt;}
.yf9{bottom:153.466667pt;}
.y9e{bottom:154.586667pt;}
.y2e3{bottom:155.226667pt;}
.y27f{bottom:155.386667pt;}
.y155{bottom:156.506667pt;}
.y131{bottom:157.946667pt;}
.y38{bottom:160.186667pt;}
.y2c1{bottom:160.666667pt;}
.y1a2{bottom:161.786667pt;}
.y18c{bottom:162.906667pt;}
.y1bf{bottom:163.706667pt;}
.y207{bottom:163.866667pt;}
.y81{bottom:164.186667pt;}
.y345{bottom:167.226667pt;}
.yb{bottom:168.480000pt;}
.y1aa{bottom:168.506667pt;}
.y1c6{bottom:168.986667pt;}
.y1d{bottom:169.760000pt;}
.y18e{bottom:169.946667pt;}
.ye9{bottom:174.746667pt;}
.yd4{bottom:175.226667pt;}
.y163{bottom:175.586667pt;}
.y23a{bottom:176.666667pt;}
.y77{bottom:177.466667pt;}
.y240{bottom:177.685352pt;}
.y11e{bottom:178.106667pt;}
.y2e2{bottom:178.586667pt;}
.y27e{bottom:178.746667pt;}
.y235{bottom:179.226667pt;}
.yb7{bottom:179.546667pt;}
.y62{bottom:180.666667pt;}
.y82{bottom:181.893333pt;}
.y21e{bottom:181.946667pt;}
.y66{bottom:182.266667pt;}
.y24c{bottom:183.811478pt;}
.y2c0{bottom:184.026667pt;}
.y30a{bottom:184.346667pt;}
.y1b3{bottom:185.466667pt;}
.yf8{bottom:190.266667pt;}
.y9d{bottom:191.386667pt;}
.y206{bottom:194.266667pt;}
.y164{bottom:194.693333pt;}
.y130{bottom:194.746667pt;}
.y1a1{bottom:195.386667pt;}
.y108{bottom:196.186667pt;}
.y15c{bottom:197.466667pt;}
.y344{bottom:197.626667pt;}
.y4b{bottom:197.786667pt;}
.y83{bottom:199.613333pt;}
.y18b{bottom:199.706667pt;}
.y1ed{bottom:200.186667pt;}
.y1db{bottom:200.666667pt;}
.y1f5{bottom:200.986667pt;}
.y1c{bottom:201.440000pt;}
.y2e1{bottom:201.946667pt;}
.y27c{bottom:202.106667pt;}
.y37{bottom:202.746667pt;}
.y154{bottom:204.026667pt;}
.ya{bottom:205.280000pt;}
.y1a9{bottom:205.306667pt;}
.y29e{bottom:205.786667pt;}
.y24b{bottom:206.273365pt;}
.y1be{bottom:206.586667pt;}
.y2bf{bottom:207.386667pt;}
.y328{bottom:207.866667pt;}
.y234{bottom:209.786667pt;}
.ye8{bottom:211.546667pt;}
.y21d{bottom:212.346667pt;}
.yd3{bottom:213.466667pt;}
.y165{bottom:213.760000pt;}
.y76{bottom:214.266667pt;}
.y309{bottom:214.906667pt;}
.y1c5{bottom:216.346667pt;}
.y84{bottom:217.306667pt;}
.yae{bottom:217.466667pt;}
.yb6{bottom:217.946667pt;}
.y65{bottom:219.066667pt;}
.y153{bottom:219.546667pt;}
.y16d{bottom:222.266667pt;}
.y205{bottom:224.826667pt;}
.y27b{bottom:225.306667pt;}
.y11d{bottom:225.626667pt;}
.yf7{bottom:227.066667pt;}
.y343{bottom:228.026667pt;}
.y9c{bottom:228.186667pt;}
.y24a{bottom:228.849971pt;}
.y1a0{bottom:229.146667pt;}
.y12f{bottom:231.546667pt;}
.y166{bottom:232.866667pt;}
.y61{bottom:234.266667pt;}
.y85{bottom:235.040000pt;}
.y29d{bottom:236.186667pt;}
.y18a{bottom:236.506667pt;}
.y1ec{bottom:236.986667pt;}
.y1da{bottom:237.466667pt;}
.y1f4{bottom:237.786667pt;}
.y326{bottom:238.266667pt;}
.y2e0{bottom:238.426667pt;}
.y233{bottom:240.346667pt;}
.y1a8{bottom:242.106667pt;}
.y21c{bottom:242.946667pt;}
.y107{bottom:243.586667pt;}
.y4a{bottom:245.186667pt;}
.y308{bottom:245.506667pt;}
.y36{bottom:246.146667pt;}
.y152{bottom:247.266667pt;}
.y1f1{bottom:248.386667pt;}
.y27a{bottom:248.706667pt;}
.y2be{bottom:249.186667pt;}
.y1bd{bottom:249.346667pt;}
.yd2{bottom:249.506667pt;}
.y167{bottom:251.933333pt;}
.yad{bottom:254.306667pt;}
.y204{bottom:255.426667pt;}
.y64{bottom:255.906667pt;}
.yb5{bottom:256.226667pt;}
.y342{bottom:258.466667pt;}
.ye7{bottom:259.106667pt;}
.y87{bottom:260.133333pt;}
.y75{bottom:261.666667pt;}
.y2df{bottom:261.826667pt;}
.y19f{bottom:262.786667pt;}
.y249{bottom:262.990205pt;}
.y1c4{bottom:263.906667pt;}
.y9b{bottom:265.026667pt;}
.y29c{bottom:266.786667pt;}
.y60{bottom:267.746667pt;}
.y12e{bottom:268.386667pt;}
.y16c{bottom:269.826667pt;}
.y232{bottom:270.786667pt;}
.y168{bottom:271.040000pt;}
.y15b{bottom:271.106667pt;}
.y279{bottom:272.066667pt;}
.y2bd{bottom:272.546667pt;}
.y11c{bottom:273.186667pt;}
.y189{bottom:273.346667pt;}
.y21b{bottom:273.506667pt;}
.y1eb{bottom:273.826667pt;}
.y1d9{bottom:274.306667pt;}
.yf6{bottom:274.626667pt;}
.y151{bottom:274.786667pt;}
.y1af{bottom:275.586667pt;}
.y307{bottom:275.906667pt;}
.y1a7{bottom:278.946667pt;}
.y106{bottom:280.386667pt;}
.yd1{bottom:283.266667pt;}
.y7{bottom:284.066667pt;}
.y2de{bottom:285.026667pt;}
.y1f0{bottom:285.186667pt;}
.y248{bottom:285.291487pt;}
.y203{bottom:285.986667pt;}
.y341{bottom:288.866667pt;}
.y35{bottom:289.666667pt;}
.yac{bottom:291.106667pt;}
.y1bc{bottom:292.226667pt;}
.y49{bottom:292.706667pt;}
.yb4{bottom:294.466667pt;}
.y278{bottom:295.426667pt;}
.ye6{bottom:295.906667pt;}
.y16b{bottom:296.093333pt;}
.yd0{bottom:296.386667pt;}
.y29b{bottom:297.346667pt;}
.y74{bottom:298.466667pt;}
.y231{bottom:301.346667pt;}
.y9a{bottom:301.826667pt;}
.y150{bottom:302.466667pt;}
.y21a{bottom:304.066667pt;}
.y12d{bottom:305.186667pt;}
.y306{bottom:306.466667pt;}
.y1b2{bottom:306.626667pt;}
.y247{bottom:307.868093pt;}
.y15a{bottom:307.906667pt;}
.y2dd{bottom:308.386667pt;}
.y188{bottom:310.146667pt;}
.y1d8{bottom:311.106667pt;}
.yf5{bottom:311.426667pt;}
.y1ae{bottom:312.386667pt;}
.y5f{bottom:314.306667pt;}
.y1a6{bottom:315.746667pt;}
.y202{bottom:316.386667pt;}
.y105{bottom:317.186667pt;}
.y277{bottom:318.786667pt;}
.y2bc{bottom:319.266667pt;}
.y11b{bottom:320.546667pt;}
.y1ea{bottom:321.346667pt;}
.y134{bottom:321.986667pt;}
.ycf{bottom:323.906667pt;}
.yab{bottom:327.906667pt;}
.y48{bottom:329.506667pt;}
.y10{bottom:329.986667pt;}
.y19e{bottom:330.146667pt;}
.y246{bottom:330.467643pt;}
.y2dc{bottom:331.746667pt;}
.y230{bottom:331.906667pt;}
.yb3{bottom:332.706667pt;}
.y34{bottom:333.186667pt;}
.y219{bottom:334.466667pt;}
.y1bb{bottom:335.106667pt;}
.y73{bottom:335.266667pt;}
.y325{bottom:335.586667pt;}
.y305{bottom:337.026667pt;}
.y99{bottom:338.626667pt;}
.y12c{bottom:341.826667pt;}
.y275{bottom:342.146667pt;}
.y2bb{bottom:342.626667pt;}
.y19d{bottom:343.266667pt;}
.y1b1{bottom:343.426667pt;}
.y159{bottom:344.706667pt;}
.y187{bottom:346.946667pt;}
.y1f3{bottom:348.226667pt;}
.y1ad{bottom:349.186667pt;}
.y340{bottom:349.666667pt;}
.yce{bottom:351.586667pt;}
.y1a5{bottom:352.546667pt;}
.y245{bottom:353.044249pt;}
.y104{bottom:353.986667pt;}
.y2db{bottom:355.106667pt;}
.y14f{bottom:357.666667pt;}
.y1e9{bottom:358.146667pt;}
.y1d7{bottom:358.466667pt;}
.yf4{bottom:358.786667pt;}
.y5e{bottom:361.826667pt;}
.y22f{bottom:362.466667pt;}
.yaa{bottom:364.706667pt;}
.y218{bottom:365.026667pt;}
.y274{bottom:365.346667pt;}
.y2ba{bottom:365.986667pt;}
.y47{bottom:366.306667pt;}
.y304{bottom:367.586667pt;}
.y11a{bottom:368.066667pt;}
.ye5{bottom:369.506667pt;}
.y19c{bottom:370.786667pt;}
.yb2{bottom:370.946667pt;}
.y72{bottom:372.066667pt;}
.y98{bottom:375.426667pt;}
.y33{bottom:376.546667pt;}
.y201{bottom:377.506667pt;}
.y1ba{bottom:377.986667pt;}
.y2da{bottom:378.466667pt;}
.ycd{bottom:379.106667pt;}
.y158{bottom:379.426667pt;}
.y33f{bottom:380.066667pt;}
.y186{bottom:381.506667pt;}
.y14e{bottom:385.186667pt;}
.y244{bottom:385.670198pt;}
.y1ac{bottom:385.986667pt;}
.y273{bottom:388.706667pt;}
.y29a{bottom:388.866667pt;}
.y2b8{bottom:389.186667pt;}
.y12b{bottom:389.346667pt;}
.y103{bottom:390.786667pt;}
.y22e{bottom:392.866667pt;}
.y1e8{bottom:394.946667pt;}
.y1d6{bottom:395.266667pt;}
.yf3{bottom:395.586667pt;}
.y324{bottom:396.386667pt;}
.y303{bottom:397.986667pt;}
.y19b{bottom:398.466667pt;}
.y2d9{bottom:401.826667pt;}
.y157{bottom:402.146667pt;}
.y46{bottom:403.106667pt;}
.y1c3{bottom:406.306667pt;}
.ycc{bottom:406.786667pt;}
.y200{bottom:408.066667pt;}
.y71{bottom:408.866667pt;}
.y185{bottom:409.026667pt;}
.y5d{bottom:409.186667pt;}
.y33e{bottom:410.466667pt;}
.y271{bottom:412.066667pt;}
.y97{bottom:412.226667pt;}
.y2b7{bottom:412.546667pt;}
.y14d{bottom:412.706667pt;}
.y119{bottom:415.426667pt;}
.ye4{bottom:417.026667pt;}
.y299{bottom:419.426667pt;}
.y32{bottom:420.066667pt;}
.y243{bottom:420.498743pt;}
.y1b9{bottom:420.866667pt;}
.y184{bottom:422.146667pt;}
.y1ab{bottom:422.786667pt;}
.y22d{bottom:423.426667pt;}
.y2d8{bottom:425.026667pt;}
.y19a{bottom:425.986667pt;}
.y12a{bottom:426.146667pt;}
.y323{bottom:426.786667pt;}
.y102{bottom:427.586667pt;}
.y302{bottom:428.546667pt;}
.y1d5{bottom:432.066667pt;}
.y1f2{bottom:432.386667pt;}
.y156{bottom:434.146667pt;}
.y15e{bottom:434.400000pt;}
.yc7{bottom:435.106667pt;}
.y26d{bottom:435.426667pt;}
.y2b6{bottom:435.906667pt;}
.y1ff{bottom:438.466667pt;}
.y45{bottom:439.906667pt;}
.y14c{bottom:440.386667pt;}
.y33d{bottom:440.866667pt;}
.y1e7{bottom:442.306667pt;}
.yf2{bottom:443.106667pt;}
.y70{bottom:445.666667pt;}
.y5c{bottom:445.986667pt;}
.yb1{bottom:447.426667pt;}
.y96{bottom:449.026667pt;}
.y183{bottom:449.666667pt;}
.y298{bottom:449.986667pt;}
.y199{bottom:453.666667pt;}
.ye3{bottom:453.826667pt;}
.y22c{bottom:453.986667pt;}
.y217{bottom:456.546667pt;}
.y321{bottom:457.186667pt;}
.y301{bottom:459.106667pt;}
.y2b5{bottom:459.266667pt;}
.ya9{bottom:459.586667pt;}
.y2d7{bottom:461.506667pt;}
.yc9{bottom:462.626667pt;}
.y118{bottom:462.946667pt;}
.y31{bottom:463.586667pt;}
.y1b8{bottom:463.746667pt;}
.y101{bottom:464.386667pt;}
.y14b{bottom:467.906667pt;}
.y1fe{bottom:469.026667pt;}
.y33c{bottom:471.266667pt;}
.y44{bottom:476.706667pt;}
.y182{bottom:477.346667pt;}
.y1e6{bottom:479.106667pt;}
.y1d4{bottom:479.586667pt;}
.yf1{bottom:479.906667pt;}
.y297{bottom:480.546667pt;}
.y197{bottom:481.186667pt;}
.y6f{bottom:482.466667pt;}
.y2b3{bottom:482.626667pt;}
.y5b{bottom:482.786667pt;}
.y22b{bottom:484.546667pt;}
.y2d6{bottom:484.866667pt;}
.y95{bottom:485.826667pt;}
.y216{bottom:487.106667pt;}
.y31f{bottom:487.586667pt;}
.y300{bottom:489.666667pt;}
.ye2{bottom:490.626667pt;}
.y14a{bottom:495.613333pt;}
.ya8{bottom:496.413333pt;}
.y1fd{bottom:499.613333pt;}
.y129{bottom:499.773333pt;}
.y100{bottom:501.213333pt;}
.y33b{bottom:501.693333pt;}
.y181{bottom:504.893333pt;}
.yc6{bottom:506.013333pt;}
.y1b7{bottom:506.653333pt;}
.y30{bottom:506.973333pt;}
.y242{bottom:508.774650pt;}
.y196{bottom:508.893333pt;}
.y117{bottom:510.493333pt;}
.y296{bottom:510.973333pt;}
.y133{bottom:511.933333pt;}
.y43{bottom:513.533333pt;}
.y22a{bottom:514.973333pt;}
.y1d3{bottom:516.413333pt;}
.yf0{bottom:516.733333pt;}
.y215{bottom:517.693333pt;}
.y9{bottom:518.973333pt;}
.y2b2{bottom:519.133333pt;}
.y6e{bottom:519.293333pt;}
.y5a{bottom:519.613333pt;}
.y2ff{bottom:520.093333pt;}
.y2d5{bottom:521.373333pt;}
.y94{bottom:522.653333pt;}
.y149{bottom:523.133333pt;}
.y31e{bottom:523.933333pt;}
.y1e5{bottom:526.653333pt;}
.y26c{bottom:527.293333pt;}
.ye1{bottom:527.453333pt;}
.y1b{bottom:530.173333pt;}
.y241{bottom:531.901905pt;}
.y33a{bottom:532.093333pt;}
.y180{bottom:532.573333pt;}
.ya7{bottom:533.213333pt;}
.y2fd{bottom:535.773333pt;}
.yc5{bottom:536.253333pt;}
.y195{bottom:536.413333pt;}
.y128{bottom:536.573333pt;}
.yff{bottom:538.013333pt;}
.y295{bottom:541.533333pt;}
.y2b1{bottom:542.493333pt;}
.y26b{bottom:542.973333pt;}
.y2d4{bottom:544.733333pt;}
.y229{bottom:545.533333pt;}
.y214{bottom:548.253333pt;}
.y1b0{bottom:548.733333pt;}
.y1b6{bottom:549.533333pt;}
.y42{bottom:550.333333pt;}
.y2f{bottom:550.493333pt;}
.y148{bottom:550.813333pt;}
.y1d2{bottom:553.213333pt;}
.y31d{bottom:554.333333pt;}
.y6d{bottom:556.093333pt;}
.y59{bottom:556.413333pt;}
.y116{bottom:557.853333pt;}
.y93{bottom:559.453333pt;}
.y17f{bottom:560.093333pt;}
.y1fc{bottom:560.573333pt;}
.y1e4{bottom:563.453333pt;}
.yef{bottom:564.253333pt;}
.y194{bottom:564.733333pt;}
.y2ae{bottom:565.693333pt;}
.y26a{bottom:566.173333pt;}
.y339{bottom:568.573333pt;}
.ya6{bottom:570.013333pt;}
.y294{bottom:572.093333pt;}
.y127{bottom:573.373333pt;}
.ye0{bottom:574.813333pt;}
.y228{bottom:576.093333pt;}
.y147{bottom:578.333333pt;}
.y213{bottom:578.653333pt;}
.y2d3{bottom:581.213333pt;}
.yc4{bottom:582.653333pt;}
.y31c{bottom:584.733333pt;}
.yfe{bottom:585.533333pt;}
.y41{bottom:587.133333pt;}
.y17e{bottom:587.773333pt;}
.y269{bottom:589.533333pt;}
.y6c{bottom:590.813333pt;}
.y1fb{bottom:591.133333pt;}
.y1b5{bottom:592.413333pt;}
.y58{bottom:593.213333pt;}
.y2e{bottom:594.013333pt;}
.y92{bottom:596.253333pt;}
.y338{bottom:598.973333pt;}
.y1e3{bottom:600.253333pt;}
.y1d1{bottom:600.733333pt;}
.yee{bottom:601.053333pt;}
.y293{bottom:602.653333pt;}
.y2fb{bottom:603.293333pt;}
.y2d2{bottom:604.573333pt;}
.y115{bottom:605.373333pt;}
.y146{bottom:606.013333pt;}
.ya5{bottom:606.813333pt;}
.y212{bottom:609.213333pt;}
.y193{bottom:609.373333pt;}
.y1a4{bottom:610.173333pt;}
.ydf{bottom:611.613333pt;}
.y268{bottom:612.893333pt;}
.y6b{bottom:613.213333pt;}
.y31b{bottom:615.133333pt;}
.y17d{bottom:615.293333pt;}
.yc3{bottom:619.453333pt;}
.y126{bottom:620.893333pt;}
.y1fa{bottom:621.693333pt;}
.yfd{bottom:622.333333pt;}
.y227{bottom:623.453333pt;}
.y40{bottom:623.933333pt;}
.y2d1{bottom:627.933333pt;}
.y337{bottom:629.373333pt;}
.y57{bottom:630.013333pt;}
.y91{bottom:633.053333pt;}
.y145{bottom:633.533333pt;}
.y2fa{bottom:634.333333pt;}
.y1b4{bottom:635.293333pt;}
.y267{bottom:636.253333pt;}
.y2d{bottom:637.373333pt;}
.y1d0{bottom:637.533333pt;}
.yed{bottom:637.853333pt;}
.y192{bottom:639.613333pt;}
.y211{bottom:639.773333pt;}
.y114{bottom:642.173333pt;}
.y17c{bottom:642.973333pt;}
.ya4{bottom:643.613333pt;}
.y31a{bottom:645.533333pt;}
.y1c2{bottom:646.973333pt;}
.y1e2{bottom:647.773333pt;}
.yde{bottom:648.413333pt;}
.y2d0{bottom:651.133333pt;}
.y1f9{bottom:652.253333pt;}
.y6a{bottom:654.173333pt;}
.y7a{bottom:654.400000pt;}
.yc2{bottom:656.093333pt;}
.y125{bottom:657.693333pt;}
.yfc{bottom:659.133333pt;}
.y266{bottom:659.613333pt;}
.y336{bottom:659.773333pt;}
.y3f{bottom:660.733333pt;}
.y144{bottom:661.213333pt;}
.y292{bottom:663.613333pt;}
.y226{bottom:666.013333pt;}
.y56{bottom:666.813333pt;}
.y191{bottom:669.533333pt;}
.y90{bottom:669.853333pt;}
.y210{bottom:670.333333pt;}
.y17b{bottom:670.493333pt;}
.y1cf{bottom:674.333333pt;}
.y2cf{bottom:674.493333pt;}
.y319{bottom:675.933333pt;}
.y113{bottom:678.973333pt;}
.ya3{bottom:680.413333pt;}
.y2c{bottom:680.893333pt;}
.y1f8{bottom:682.813333pt;}
.y265{bottom:682.973333pt;}
.y1c1{bottom:683.773333pt;}
.yec{bottom:685.213333pt;}
.y143{bottom:688.733333pt;}
.yc1{bottom:692.893333pt;}
.y291{bottom:694.173333pt;}
.y124{bottom:694.493333pt;}
.y1e1{bottom:695.133333pt;}
.ydd{bottom:695.933333pt;}
.y335{bottom:696.253333pt;}
.y3e{bottom:697.533333pt;}
.y2ce{bottom:697.853333pt;}
.y17a{bottom:698.173333pt;}
.y2ad{bottom:698.493333pt;}
.y20f{bottom:700.733333pt;}
.y190{bottom:703.293333pt;}
.y55{bottom:703.613333pt;}
.y2f9{bottom:704.253333pt;}
.y264{bottom:706.173333pt;}
.y318{bottom:706.333333pt;}
.y8f{bottom:706.493333pt;}
.y225{bottom:709.533333pt;}
.y1f7{bottom:713.213333pt;}
.y2ac{bottom:714.013333pt;}
.y112{bottom:715.773333pt;}
.y142{bottom:716.413333pt;}
.ya2{bottom:717.213333pt;}
.y2cd{bottom:721.213333pt;}
.y23d{bottom:721.563871pt;}
.y1ce{bottom:721.693333pt;}
.yeb{bottom:722.013333pt;}
.y2b{bottom:724.253333pt;}
.y290{bottom:724.733333pt;}
.y179{bottom:725.693333pt;}
.y334{bottom:726.653333pt;}
.y2f8{bottom:727.613333pt;}
.y239{bottom:728.733333pt;}
.y263{bottom:729.533333pt;}
.yc0{bottom:729.693333pt;}
.y123{bottom:731.293333pt;}
.y1e0{bottom:731.933333pt;}
.ydc{bottom:732.733333pt;}
.y3d{bottom:734.333333pt;}
.y316{bottom:736.733333pt;}
.y2ab{bottom:737.373333pt;}
.y28e{bottom:740.253333pt;}
.y54{bottom:740.413333pt;}
.y8e{bottom:743.293333pt;}
.y140{bottom:743.933333pt;}
.y2cb{bottom:744.573333pt;}
.y2f7{bottom:751.013333pt;}
.y111{bottom:752.613333pt;}
.y224{bottom:752.933333pt;}
.y178{bottom:753.413333pt;}
.ya1{bottom:754.053333pt;}
.y238{bottom:755.973333pt;}
.y333{bottom:757.093333pt;}
.y1cd{bottom:758.533333pt;}
.y2aa{bottom:760.773333pt;}
.y20e{bottom:761.893333pt;}
.y28d{bottom:763.653333pt;}
.ybf{bottom:766.533333pt;}
.y1f6{bottom:766.693333pt;}
.y315{bottom:767.173333pt;}
.y2a{bottom:767.813333pt;}
.y2ca{bottom:767.973333pt;}
.y122{bottom:768.133333pt;}
.y1df{bottom:768.773333pt;}
.ydb{bottom:769.573333pt;}
.y3c{bottom:771.173333pt;}
.y13f{bottom:771.653333pt;}
.y2f6{bottom:774.373333pt;}
.y262{bottom:776.293333pt;}
.y53{bottom:777.253333pt;}
.y8d{bottom:780.133333pt;}
.y177{bottom:780.933333pt;}
.y2a9{bottom:784.133333pt;}
.y28c{bottom:787.013333pt;}
.y332{bottom:787.493333pt;}
.y110{bottom:789.413333pt;}
.y223{bottom:789.733333pt;}
.ya0{bottom:790.853333pt;}
.y2c9{bottom:791.173333pt;}
.y20d{bottom:792.453333pt;}
.y1cc{bottom:795.333333pt;}
.y314{bottom:797.573333pt;}
.y2f5{bottom:797.733333pt;}
.y13e{bottom:799.173333pt;}
.y261{bottom:799.653333pt;}
.ybe{bottom:803.333333pt;}
.y121{bottom:804.933333pt;}
.yda{bottom:806.373333pt;}
.y2a7{bottom:807.333333pt;}
.y3b{bottom:807.973333pt;}
.y176{bottom:808.613333pt;}
.y28b{bottom:810.213333pt;}
.y29{bottom:811.333333pt;}
.y52{bottom:814.053333pt;}
.y2c8{bottom:814.533333pt;}
.y1de{bottom:816.293333pt;}
.yfb{bottom:816.933333pt;}
.y331{bottom:817.893333pt;}
.y2f4{bottom:820.933333pt;}
.y25f{bottom:823.013333pt;}
.y10f{bottom:826.213333pt;}
.y13d{bottom:826.853333pt;}
.y8c{bottom:827.653333pt;}
.y313{bottom:827.973333pt;}
.y222{bottom:833.253333pt;}
.y28a{bottom:833.573333pt;}
.y28{bottom:834.053333pt;}
.y13{bottom:835.493333pt;}
.y174{bottom:836.133333pt;}
.y20c{bottom:839.813333pt;}
.ybd{bottom:840.133333pt;}
.y120{bottom:841.733333pt;}
.y1cb{bottom:842.853333pt;}
.y2a6{bottom:843.813333pt;}
.y2f2{bottom:844.293333pt;}
.y3a{bottom:844.773333pt;}
.y25e{bottom:846.213333pt;}
.y51{bottom:850.853333pt;}
.y2c7{bottom:851.013333pt;}
.y1dd{bottom:853.413333pt;}
.yd9{bottom:853.733333pt;}
.y13c{bottom:854.373333pt;}
.y289{bottom:856.933333pt;}
.y312{bottom:858.373333pt;}
.y5{bottom:859.813333pt;}
.y237{bottom:862.693333pt;}
.y10e{bottom:863.013333pt;}
.y8b{bottom:864.453333pt;}
.y173{bottom:865.093333pt;}
.y2a5{bottom:867.173333pt;}
.y2e9{bottom:867.653333pt;}
.y4{bottom:869.093333pt;}
.y25c{bottom:869.573333pt;}
.y2c6{bottom:874.373333pt;}
.y20b{bottom:876.613333pt;}
.y221{bottom:876.773333pt;}
.ybc{bottom:878.533333pt;}
.y1ca{bottom:879.653333pt;}
.y288{bottom:880.293333pt;}
.y13b{bottom:882.053333pt;}
.y330{bottom:884.773333pt;}
.y310{bottom:888.773333pt;}
.yd8{bottom:890.533333pt;}
.y254{bottom:892.933333pt;}
.y171{bottom:893.413333pt;}
.y27{bottom:895.813333pt;}
.y220{bottom:899.493333pt;}
.y10d{bottom:899.813333pt;}
.y8a{bottom:901.253333pt;}
.y50{bottom:901.893333pt;}
.y287{bottom:903.653333pt;}
.y18f{bottom:909.573333pt;}
.y138{bottom:910.213333pt;}
.y2c4{bottom:910.853333pt;}
.y20a{bottom:913.413333pt;}
.y3{bottom:915.333333pt;}
.ybb{bottom:918.693333pt;}
.y30b{bottom:919.173333pt;}
.y32f{bottom:921.253333pt;}
.y286{bottom:927.013333pt;}
.yd7{bottom:927.333333pt;}
.y10c{bottom:936.613333pt;}
.y13a{bottom:937.893333pt;}
.y89{bottom:938.053333pt;}
.y1c9{bottom:941.413333pt;}
.y209{bottom:943.973333pt;}
.y283{bottom:950.213333pt;}
.y26{bottom:953.093333pt;}
.y2{bottom:958.853333pt;}
.y4f{bottom:959.173333pt;}
.yba{bottom:963.653333pt;}
.y170{bottom:965.733333pt;}
.y252{bottom:969.253333pt;}
.y10b{bottom:973.413333pt;}
.y69{bottom:974.853333pt;}
.y1c8{bottom:976.133333pt;}
.y137{bottom:982.533333pt;}
.y16f{bottom:982.693333pt;}
.y2e8{bottom:987.653333pt;}
.y32c{bottom:996.133333pt;}
.y1{bottom:996.613333pt;}
.y2a1{bottom:999.680000pt;}
.y2e7{bottom:1003.200000pt;}
.y25{bottom:1009.120000pt;}
.y4e{bottom:1011.680000pt;}
.y136{bottom:1012.800000pt;}
.y22{bottom:1062.880000pt;}
.h2b{height:-15.483871pt;}
.h35{height:22.560000pt;}
.h42{height:22.592000pt;}
.h34{height:22.720000pt;}
.h36{height:22.752000pt;}
.h17{height:26.381250pt;}
.h32{height:26.720000pt;}
.h39{height:26.880000pt;}
.h21{height:27.520000pt;}
.h27{height:27.552000pt;}
.h20{height:27.680000pt;}
.h23{height:27.712000pt;}
.h26{height:28.960000pt;}
.h4a{height:29.600000pt;}
.h47{height:29.760000pt;}
.h48{height:29.792000pt;}
.h44{height:30.400000pt;}
.h45{height:35.680000pt;}
.h49{height:35.712000pt;}
.h3c{height:35.840000pt;}
.h3e{height:35.872000pt;}
.hd{height:39.040000pt;}
.h19{height:39.585938pt;}
.h40{height:41.152000pt;}
.h2c{height:41.779412pt;}
.h15{height:47.782500pt;}
.h6{height:48.558750pt;}
.h3f{height:49.622500pt;}
.h16{height:52.134375pt;}
.h2a{height:52.781250pt;}
.h30{height:53.132513pt;}
.h22{height:53.535000pt;}
.h1f{height:55.200000pt;}
.hf{height:55.402500pt;}
.h1b{height:57.375000pt;}
.h1e{height:57.758750pt;}
.h1d{height:59.340000pt;}
.h3b{height:60.766875pt;}
.ha{height:61.410000pt;}
.h25{height:61.754062pt;}
.h1a{height:61.859625pt;}
.h29{height:62.781250pt;}
.h3{height:62.812500pt;}
.h14{height:64.500000pt;}
.h28{height:66.404375pt;}
.h1c{height:66.750000pt;}
.h2e{height:67.029677pt;}
.h31{height:68.118607pt;}
.h13{height:70.199062pt;}
.h4b{height:74.240000pt;}
.h4{height:75.465000pt;}
.h37{height:75.552000pt;}
.h33{height:75.680000pt;}
.h38{height:75.712000pt;}
.h8{height:78.097500pt;}
.h2f{height:83.104700pt;}
.h11{height:84.800000pt;}
.h12{height:85.785000pt;}
.h7{height:86.720000pt;}
.h41{height:88.192000pt;}
.h46{height:95.712000pt;}
.hc{height:100.125000pt;}
.h43{height:103.680000pt;}
.h3a{height:108.512000pt;}
.h3d{height:116.480000pt;}
.h2{height:125.625000pt;}
.he{height:139.680000pt;}
.hb{height:160.960000pt;}
.h5{height:178.106667pt;}
.h10{height:224.026667pt;}
.h9{height:235.226667pt;}
.h18{height:287.840000pt;}
.h24{height:323.840000pt;}
.h2d{height:528.394648pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w37{width:24.160000pt;}
.w36{width:24.352000pt;}
.w4f{width:24.512000pt;}
.w3c{width:26.880000pt;}
.w3b{width:26.912000pt;}
.w40{width:27.680000pt;}
.w41{width:27.840000pt;}
.w32{width:30.240000pt;}
.w2d{width:30.560000pt;}
.w46{width:31.360000pt;}
.w2b{width:31.840000pt;}
.w30{width:32.000000pt;}
.w51{width:32.320000pt;}
.w50{width:32.480000pt;}
.w42{width:37.152000pt;}
.w47{width:39.360000pt;}
.w35{width:39.520000pt;}
.w48{width:39.552000pt;}
.w2c{width:40.032000pt;}
.w31{width:40.192000pt;}
.w49{width:42.560000pt;}
.w43{width:43.520000pt;}
.w3a{width:44.960000pt;}
.w3d{width:45.120000pt;}
.w4d{width:55.680000pt;}
.w17{width:76.000000pt;}
.w12{width:81.952000pt;}
.w13{width:83.072000pt;}
.wb{width:84.480000pt;}
.w11{width:84.640000pt;}
.wf{width:84.992000pt;}
.w10{width:91.040000pt;}
.w18{width:92.832000pt;}
.w23{width:104.000000pt;}
.w24{width:109.152000pt;}
.w25{width:112.212216pt;}
.w16{width:113.152000pt;}
.w20{width:113.472000pt;}
.w15{width:122.880000pt;}
.w27{width:130.778564pt;}
.w1b{width:132.320000pt;}
.w1c{width:132.352000pt;}
.w1d{width:138.426667pt;}
.w1e{width:160.320000pt;}
.wd{width:166.586667pt;}
.we{width:167.706667pt;}
.wc{width:176.026667pt;}
.w21{width:179.226667pt;}
.w4b{width:194.906667pt;}
.w1a{width:198.106667pt;}
.w14{width:198.426667pt;}
.w22{width:213.146667pt;}
.w1f{width:226.946667pt;}
.w3{width:274.746667pt;}
.w9{width:282.906667pt;}
.w4{width:282.946667pt;}
.w6{width:326.626667pt;}
.w5{width:338.146667pt;}
.w26{width:358.747000pt;}
.w8{width:360.866667pt;}
.w4a{width:405.346667pt;}
.w45{width:405.666667pt;}
.w3e{width:454.146667pt;}
.w39{width:454.466667pt;}
.w44{width:462.146667pt;}
.w3f{width:462.466667pt;}
.w2e{width:463.746667pt;}
.w33{width:463.906667pt;}
.w2a{width:464.066667pt;}
.w2f{width:464.226667pt;}
.w38{width:470.626667pt;}
.w34{width:470.946667pt;}
.wa{width:480.000000pt;}
.w52{width:499.106667pt;}
.w4e{width:499.426667pt;}
.w4c{width:541.693333pt;}
.w29{width:601.213333pt;}
.w28{width:601.733180pt;}
.w19{width:604.000000pt;}
.w7{width:641.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x67{left:4.640000pt;}
.x27{left:7.200000pt;}
.x21{left:8.672000pt;}
.x6{left:9.600000pt;}
.x2c{left:11.840000pt;}
.xf{left:13.920000pt;}
.x56{left:15.520000pt;}
.x3a{left:17.120000pt;}
.x31{left:18.266667pt;}
.x3d{left:19.360000pt;}
.x32{left:21.000000pt;}
.x30{left:22.880000pt;}
.x79{left:24.640000pt;}
.x3e{left:26.080000pt;}
.xd{left:27.360000pt;}
.x47{left:28.960000pt;}
.x38{left:30.266667pt;}
.x36{left:32.000000pt;}
.x20{left:33.024000pt;}
.x2f{left:34.560000pt;}
.x44{left:35.520000pt;}
.x3c{left:36.800000pt;}
.x33{left:38.560000pt;}
.x4a{left:41.434667pt;}
.x52{left:42.714667pt;}
.x48{left:44.160000pt;}
.x4c{left:45.440000pt;}
.x50{left:47.200000pt;}
.x4d{left:48.480000pt;}
.x54{left:50.120000pt;}
.x4b{left:51.200000pt;}
.x49{left:53.466667pt;}
.x59{left:54.560000pt;}
.x22{left:56.933333pt;}
.x9{left:59.360000pt;}
.x4f{left:60.314667pt;}
.x51{left:62.554667pt;}
.x2a{left:66.880000pt;}
.x4e{left:71.514667pt;}
.x13{left:72.640000pt;}
.x7{left:74.400000pt;}
.x40{left:77.920000pt;}
.x15{left:94.592000pt;}
.x1{left:96.031988pt;}
.x43{left:99.034667pt;}
.x23{left:108.346667pt;}
.x1a{left:110.751988pt;}
.x65{left:111.660262pt;}
.x5b{left:120.031988pt;}
.x41{left:127.133333pt;}
.x14{left:129.466667pt;}
.x64{left:132.353932pt;}
.x17{left:136.026655pt;}
.x16{left:140.474667pt;}
.x1e{left:143.226655pt;}
.xe{left:159.226667pt;}
.x25{left:167.226655pt;}
.x62{left:179.299906pt;}
.x28{left:180.826667pt;}
.x73{left:189.474667pt;}
.x8{left:199.426667pt;}
.xa{left:204.666667pt;}
.x4{left:205.626667pt;}
.x61{left:208.212216pt;}
.x66{left:209.634667pt;}
.x5f{left:212.026655pt;}
.x11{left:224.506667pt;}
.x10{left:236.666667pt;}
.x42{left:238.880000pt;}
.x12{left:243.226667pt;}
.x53{left:256.346667pt;}
.x2b{left:265.826667pt;}
.xb{left:269.506667pt;}
.x57{left:275.266667pt;}
.x5c{left:277.506655pt;}
.x3{left:285.986667pt;}
.x35{left:294.466667pt;}
.x5d{left:317.506655pt;}
.xc{left:320.866667pt;}
.x1d{left:337.666655pt;}
.x34{left:347.106655pt;}
.x5a{left:353.026655pt;}
.x1b{left:354.786655pt;}
.x1c{left:357.186655pt;}
.x26{left:361.986655pt;}
.x5e{left:363.746655pt;}
.x19{left:368.386655pt;}
.x55{left:369.826667pt;}
.x58{left:379.266667pt;}
.x5{left:386.786667pt;}
.x2{left:396.866655pt;}
.x37{left:417.346667pt;}
.x45{left:426.466667pt;}
.x2d{left:441.506667pt;}
.x77{left:502.333333pt;}
.x29{left:523.453333pt;}
.x39{left:530.493333pt;}
.x78{left:534.493333pt;}
.x6f{left:551.133333pt;}
.x46{left:558.813333pt;}
.x68{left:561.053333pt;}
.x63{left:566.954616pt;}
.x6c{left:567.933333pt;}
.x7a{left:574.493333pt;}
.x1f{left:576.093322pt;}
.x74{left:587.773333pt;}
.x69{left:593.693333pt;}
.x70{left:596.893333pt;}
.x3b{left:606.493333pt;}
.x2e{left:608.093333pt;}
.x7b{left:614.493333pt;}
.x75{left:616.253333pt;}
.x7d{left:621.253333pt;}
.x71{left:624.613333pt;}
.x6d{left:633.093333pt;}
.x6a{left:634.373333pt;}
.x7c{left:639.013333pt;}
.x7e{left:646.213333pt;}
.x72{left:652.133333pt;}
.x76{left:654.053333pt;}
.x6e{left:658.053333pt;}
.x6b{left:667.013333pt;}
.x7f{left:679.333333pt;}
.x24{left:681.893322pt;}
.x18{left:689.893322pt;}
.x60{left:698.053322pt;}
.x3f{left:700.133322pt;}
}




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