
    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_a989f8a60602d331f56f0414.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ec58fcbd76a3352a78a02538.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_5147a7ecafb5ed7df43f127c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_646b546de2273df0c0a31d73.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_6f1254fd89009652f1c88c52.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_eeddc8ec16a4f4beed90f68c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_12596a17f0dd60a7a73b27ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.935059;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_58e58f59a00f1692ba6acbaa.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dd40f3b412a012a9085daa09.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ad3139a569f36967adb2792f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_44417d35f440c65512db0794.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948730;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_45ffcea2af9551ca96c382bd.woff2')format("woff");}.fff{font-family:fff;line-height:0.682617;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_2c36efb272e42c4cae85b893.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_a4a877773a58a3354ca12028.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-1.494000px;}
.ls29{letter-spacing:-1.386000px;}
.ls26{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.774000px;}
.ls1c{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.460200px;}
.ls14{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.303600px;}
.ls9{letter-spacing:-0.226200px;}
.ls19{letter-spacing:-0.126000px;}
.ls1a{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls20{letter-spacing:0.106560px;}
.ls12{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.109200px;}
.ls1b{letter-spacing:0.126000px;}
.ls1f{letter-spacing:0.135600px;}
.ls17{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.206640px;}
.lsc{letter-spacing:0.259800px;}
.ls22{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.460200px;}
.ls13{letter-spacing:0.513600px;}
.ls11{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.828000px;}
.ls25{letter-spacing:1.080000px;}
.ls1e{letter-spacing:3.060000px;}
.ls21{letter-spacing:5.940000px;}
.ls27{letter-spacing:17.460000px;}
.ls24{letter-spacing:26.959680px;}
.ls4{letter-spacing:59.040000px;}
.ls3{letter-spacing:59.760000px;}
.ls5{letter-spacing:59.880000px;}
.ls1{letter-spacing:1500.834720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-38.880000px;}
.ws1{word-spacing:-31.105680px;}
.ws1a{word-spacing:-16.020000px;}
.ws19{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.453600px;}
.wsb{word-spacing:-15.400200px;}
.ws4{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws1b{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.479800px;}
.ws18{word-spacing:-14.274000px;}
.ws6{word-spacing:-14.166000px;}
.ws13{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.734480px;}
.ws17{word-spacing:-13.626000px;}
.ws1c{word-spacing:-13.554000px;}
.ws9{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.446000px;}
.ws14{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.374000px;}
.ws3{word-spacing:-10.440000px;}
.ws0{word-spacing:0.000000px;}
._1b{margin-left:-6.588000px;}
._d{margin-left:-3.986640px;}
._3{margin-left:-2.441520px;}
._1{margin-left:-1.024560px;}
._0{width:1.135440px;}
._a{width:2.347920px;}
._b{width:3.867120px;}
._c{width:4.874160px;}
._14{width:6.655920px;}
._8{width:7.661520px;}
._9{width:9.203760px;}
._13{width:10.259040px;}
._e{width:11.294640px;}
._f{width:12.400560px;}
._16{width:13.855680px;}
._10{width:16.124400px;}
._12{width:17.259840px;}
._5{width:18.704880px;}
._4{width:19.840320px;}
._2e{width:20.856240px;}
._6{width:21.904320px;}
._23{width:23.220000px;}
._24{width:24.300000px;}
._18{width:25.306560px;}
._17{width:27.250560px;}
._1e{width:29.204640px;}
._30{width:30.368640px;}
._19{width:31.911840px;}
._1a{width:33.899520px;}
._35{width:35.227680px;}
._39{width:37.105920px;}
._31{width:38.246400px;}
._34{width:39.381840px;}
._38{width:40.457520px;}
._7{width:43.744320px;}
._36{width:45.059760px;}
._32{width:46.732320px;}
._33{width:47.750400px;}
._28{width:49.999680px;}
._22{width:55.728000px;}
._3a{width:57.130560px;}
._2f{width:58.266000px;}
._2{width:59.299920px;}
._1f{width:70.416000px;}
._2c{width:75.654000px;}
._2d{width:76.896000px;}
._29{width:82.404000px;}
._37{width:91.401840px;}
._26{width:94.338000px;}
._21{width:107.296560px;}
._20{width:113.897520px;}
._2a{width:118.422000px;}
._3b{width:122.531040px;}
._1c{width:132.840000px;}
._25{width:138.359520px;}
._2b{width:148.662000px;}
._27{width:156.924000px;}
._1d{width:160.218000px;}
._15{width:849.240000px;}
._11{width:1620.355440px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:5.760000px;}
.fsa{font-size:18.000000px;}
.fsb{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y17f{bottom:0.540000px;}
.y5c{bottom:2.865000px;}
.y12a{bottom:2.880000px;}
.y1d4{bottom:3.045000px;}
.y14f{bottom:3.060000px;}
.y17d{bottom:3.225000px;}
.y144{bottom:3.240000px;}
.y3d{bottom:3.405000px;}
.y150{bottom:3.420000px;}
.y61{bottom:3.600000px;}
.y166{bottom:4.140000px;}
.y165{bottom:4.500000px;}
.y16d{bottom:4.680000px;}
.y167{bottom:4.860000px;}
.y16c{bottom:5.760000px;}
.y1a8{bottom:5.940000px;}
.y16e{bottom:6.120000px;}
.y1aa{bottom:6.300000px;}
.y59{bottom:6.465000px;}
.y16a{bottom:7.050000px;}
.y169{bottom:10.470000px;}
.y14c{bottom:10.800000px;}
.y16b{bottom:10.830000px;}
.y1d2{bottom:10.965000px;}
.y26{bottom:10.980000px;}
.y157{bottom:11.025000px;}
.y1d5{bottom:11.145000px;}
.y15a{bottom:11.160000px;}
.y27{bottom:11.520000px;}
.y5f{bottom:14.040000px;}
.y5b{bottom:16.725000px;}
.y15c{bottom:18.360000px;}
.y156{bottom:18.405000px;}
.y14d{bottom:18.540000px;}
.y17b{bottom:18.705000px;}
.y15d{bottom:18.720000px;}
.y196{bottom:18.750000px;}
.y158{bottom:18.765000px;}
.y177{bottom:18.885000px;}
.y143{bottom:18.900000px;}
.y1d1{bottom:18.930000px;}
.y60{bottom:20.880000px;}
.y1cc{bottom:26.100000px;}
.y185{bottom:26.460000px;}
.y18a{bottom:26.505000px;}
.y18e{bottom:26.640000px;}
.y3c{bottom:30.045000px;}
.y5a{bottom:30.585000px;}
.y17a{bottom:33.825000px;}
.y192{bottom:33.840000px;}
.y176{bottom:34.005000px;}
.y161{bottom:34.020000px;}
.y195{bottom:34.050000px;}
.y17c{bottom:34.185000px;}
.y193{bottom:34.200000px;}
.y178{bottom:34.365000px;}
.y142{bottom:34.380000px;}
.y197{bottom:34.410000px;}
.y18c{bottom:34.425000px;}
.y7{bottom:35.925007px;}
.y1cb{bottom:41.580000px;}
.y1d7{bottom:41.760000px;}
.y3b{bottom:47.325000px;}
.y184{bottom:49.500000px;}
.y189{bottom:49.545000px;}
.y13b{bottom:49.860000px;}
.y18b{bottom:49.905000px;}
.y3a{bottom:64.605000px;}
.y174{bottom:64.980000px;}
.y13a{bottom:65.340000px;}
.y6{bottom:66.525004px;}
.y40{bottom:73.605000px;}
.y141{bottom:80.640000px;}
.y139{bottom:81.000000px;}
.y39{bottom:81.705000px;}
.y3f{bottom:90.705000px;}
.y140{bottom:96.120000px;}
.y138{bottom:96.480000px;}
.y5{bottom:97.125005px;}
.y38{bottom:98.985000px;}
.y3e{bottom:107.985000px;}
.y137{bottom:111.960000px;}
.y37{bottom:124.905000px;}
.y136{bottom:127.440000px;}
.y24{bottom:139.264499px;}
.y36{bottom:142.590000px;}
.y135{bottom:142.740000px;}
.y13f{bottom:143.100000px;}
.y134{bottom:158.220000px;}
.y13e{bottom:158.580000px;}
.y133{bottom:174.060000px;}
.y132{bottom:189.540000px;}
.y1b{bottom:196.933500px;}
.y131{bottom:205.230000px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y130{bottom:220.710000px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y12f{bottom:235.830000px;}
.y13d{bottom:236.190000px;}
.y12e{bottom:251.670000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y12d{bottom:267.330000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y29{bottom:278.310000px;}
.y12c{bottom:282.450000px;}
.y13c{bottom:282.810000px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y179{bottom:319.725000px;}
.y5d{bottom:322.230000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y287{bottom:324.030000px;}
.ye6{bottom:324.750000px;}
.yb8{bottom:325.650000px;}
.y26b{bottom:326.550000px;}
.y1d6{bottom:329.625000px;}
.y202{bottom:333.930000px;}
.y58{bottom:334.485000px;}
.y1f1{bottom:340.230000px;}
.y286{bottom:341.310000px;}
.ye5{bottom:342.030000px;}
.yb7{bottom:342.930000px;}
.y26a{bottom:343.650000px;}
.y12{bottom:348.133500px;}
.y254{bottom:349.410000px;}
.y10c{bottom:351.210000px;}
.y149{bottom:353.190000px;}
.y11a{bottom:355.170000px;}
.y1f0{bottom:357.510000px;}
.y285{bottom:358.410000px;}
.ye4{bottom:359.310000px;}
.yb6{bottom:360.210000px;}
.y269{bottom:360.930000px;}
.y1d3{bottom:361.305000px;}
.y1b4{bottom:364.170000px;}
.y175{bottom:366.165000px;}
.y253{bottom:366.690000px;}
.y10b{bottom:368.490000px;}
.y23c{bottom:369.210000px;}
.y148{bottom:370.470000px;}
.y119{bottom:372.450000px;}
.y1ef{bottom:374.610000px;}
.y284{bottom:375.690000px;}
.ye3{bottom:376.410000px;}
.yb5{bottom:377.490000px;}
.y268{bottom:378.210000px;}
.y1b3{bottom:381.450000px;}
.y57{bottom:384.330000px;}
.y10a{bottom:385.770000px;}
.y23b{bottom:386.490000px;}
.y11{bottom:386.785499px;}
.y8c{bottom:387.390000px;}
.y252{bottom:388.470000px;}
.y118{bottom:389.730000px;}
.y1ee{bottom:391.890000px;}
.y1d0{bottom:393.165000px;}
.ye2{bottom:393.690000px;}
.yb4{bottom:394.770000px;}
.y267{bottom:395.490000px;}
.y147{bottom:396.390000px;}
.y283{bottom:397.470000px;}
.y56{bottom:398.730000px;}
.y109{bottom:403.050000px;}
.y23a{bottom:403.770000px;}
.y251{bottom:405.750000px;}
.y1b2{bottom:407.730000px;}
.y10{bottom:408.044999px;}
.y1ed{bottom:409.170000px;}
.ye1{bottom:411.015000px;}
.y201{bottom:412.095000px;}
.y173{bottom:412.815000px;}
.y8b{bottom:414.075000px;}
.y282{bottom:414.795000px;}
.y117{bottom:415.515000px;}
.y266{bottom:417.315000px;}
.y55{bottom:418.215000px;}
.y108{bottom:420.195000px;}
.yb3{bottom:420.735000px;}
.y146{bottom:422.535000px;}
.y250{bottom:423.075000px;}
.y1cf{bottom:425.055000px;}
.y239{bottom:425.595000px;}
.y54{bottom:426.135000px;}
.y1ec{bottom:426.495000px;}
.ye0{bottom:428.295000px;}
.y200{bottom:429.195000px;}
.y8a{bottom:431.355000px;}
.y1b1{bottom:433.515000px;}
.y265{bottom:434.595000px;}
.y221{bottom:435.855000px;}
.y281{bottom:436.575000px;}
.y107{bottom:437.475000px;}
.y116{bottom:442.155000px;}
.y238{bottom:442.695000px;}
.y53{bottom:443.415000px;}
.y1eb{bottom:443.775000px;}
.y24f{bottom:444.855000px;}
.ydf{bottom:445.575000px;}
.y1ff{bottom:446.475000px;}
.y145{bottom:447.015000px;}
.yb2{bottom:447.195000px;}
.y89{bottom:448.635000px;}
.y264{bottom:451.695000px;}
.y280{bottom:453.855000px;}
.y1ce{bottom:456.735000px;}
.y1b0{bottom:457.995000px;}
.y12b{bottom:459.975000px;}
.y52{bottom:460.515000px;}
.y1ea{bottom:461.055000px;}
.y220{bottom:461.955000px;}
.yde{bottom:462.855000px;}
.y106{bottom:463.395000px;}
.y1fe{bottom:463.755000px;}
.yb1{bottom:464.475000px;}
.y88{bottom:465.915000px;}
.y115{bottom:467.895000px;}
.y27f{bottom:470.955000px;}
.y263{bottom:473.475000px;}
.y1af{bottom:473.655000px;}
.y51{bottom:477.795000px;}
.y21f{bottom:479.235000px;}
.ydd{bottom:479.955000px;}
.yb0{bottom:481.755000px;}
.y87{bottom:483.015000px;}
.yf{bottom:484.864502px;}
.y1e9{bottom:486.795000px;}
.y27e{bottom:488.235000px;}
.y1cd{bottom:488.595000px;}
.y105{bottom:490.035000px;}
.y172{bottom:490.395000px;}
.y262{bottom:490.755000px;}
.y19d{bottom:491.295000px;}
.y114{bottom:492.555000px;}
.y50{bottom:494.715000px;}
.y1ae{bottom:495.615000px;}
.y21e{bottom:496.515000px;}
.ydc{bottom:497.235000px;}
.y237{bottom:499.035000px;}
.y1e8{bottom:499.755000px;}
.y86{bottom:500.295000px;}
.ye{bottom:502.864502px;}
.y104{bottom:507.315000px;}
.yaf{bottom:508.035000px;}
.y19c{bottom:508.575000px;}
.y27d{bottom:510.015000px;}
.y4f{bottom:512.355000px;}
.y21d{bottom:513.795000px;}
.ydb{bottom:514.515000px;}
.y85{bottom:517.575000px;}
.y1ad{bottom:517.935000px;}
.y24e{bottom:518.295000px;}
.y113{bottom:518.835000px;}
.y1ca{bottom:520.455000px;}
.y236{bottom:520.815000px;}
.yd{bottom:520.864502px;}
.y103{bottom:524.595000px;}
.yae{bottom:525.315000px;}
.y19b{bottom:525.855000px;}
.y27c{bottom:527.295000px;}
.y4e{bottom:529.635000px;}
.y1e7{bottom:531.615000px;}
.yda{bottom:531.795000px;}
.y84{bottom:534.855000px;}
.y24d{bottom:535.575000px;}
.y171{bottom:537.015000px;}
.y235{bottom:538.095000px;}
.yc{bottom:538.864499px;}
.y21c{bottom:540.075000px;}
.y1ac{bottom:540.255000px;}
.y102{bottom:541.695000px;}
.y261{bottom:542.595000px;}
.y27b{bottom:544.575000px;}
.y4d{bottom:546.915000px;}
.yad{bottom:551.595000px;}
.y19a{bottom:552.135000px;}
.y24c{bottom:552.855000px;}
.y234{bottom:555.195000px;}
.yb{bottom:556.864499px;}
.y21b{bottom:557.355000px;}
.yd9{bottom:558.075000px;}
.y101{bottom:558.975000px;}
.y83{bottom:561.135000px;}
.y27a{bottom:561.855000px;}
.y1ab{bottom:562.575000px;}
.y1e6{bottom:563.295000px;}
.y4c{bottom:564.015000px;}
.y260{bottom:564.195000px;}
.y170{bottom:568.155000px;}
.yac{bottom:568.695000px;}
.y21a{bottom:574.455000px;}
.yd8{bottom:575.355000px;}
.y1fd{bottom:576.255000px;}
.y233{bottom:576.975000px;}
.y199{bottom:577.875000px;}
.y82{bottom:578.415000px;}
.y4b{bottom:581.295000px;}
.y25f{bottom:581.475000px;}
.y279{bottom:583.455000px;}
.y1a9{bottom:585.075000px;}
.y100{bottom:585.255000px;}
.yab{bottom:585.975000px;}
.y198{bottom:590.835000px;}
.y219{bottom:591.735000px;}
.yd7{bottom:592.455000px;}
.y1fc{bottom:593.535000px;}
.y232{bottom:594.255000px;}
.y1e5{bottom:595.155000px;}
.y81{bottom:595.515000px;}
.y4a{bottom:598.575000px;}
.y25e{bottom:598.755000px;}
.y16f{bottom:599.115000px;}
.y278{bottom:600.735000px;}
.yff{bottom:602.535000px;}
.yaa{bottom:603.255000px;}
.y1a7{bottom:607.395000px;}
.y218{bottom:609.015000px;}
.yd6{bottom:609.735000px;}
.y1fb{bottom:610.815000px;}
.y1c9{bottom:611.175000px;}
.y231{bottom:611.535000px;}
.y80{bottom:612.795000px;}
.y49{bottom:615.855000px;}
.y277{bottom:618.015000px;}
.ya9{bottom:620.535000px;}
.y217{bottom:626.295000px;}
.yd5{bottom:627.015000px;}
.yfe{bottom:628.815000px;}
.y7f{bottom:630.075000px;}
.y24b{bottom:630.795000px;}
.y48{bottom:633.135000px;}
.y230{bottom:633.315000px;}
.y1fa{bottom:636.555000px;}
.y194{bottom:637.455000px;}
.ya8{bottom:637.815000px;}
.y276{bottom:639.795000px;}
.y1a6{bottom:642.135000px;}
.y216{bottom:643.575000px;}
.yd4{bottom:644.295000px;}
.ya{bottom:645.510000px;}
.yfd{bottom:645.915000px;}
.y24a{bottom:648.075000px;}
.y168{bottom:648.435000px;}
.y47{bottom:650.415000px;}
.ya7{bottom:654.945000px;}
.y7e{bottom:656.385000px;}
.y275{bottom:657.105000px;}
.y1e4{bottom:658.725000px;}
.yd3{bottom:661.605000px;}
.y1f9{bottom:662.865000px;}
.yfc{bottom:663.225000px;}
.y249{bottom:665.205000px;}
.y9{bottom:666.771000px;}
.y46{bottom:667.545000px;}
.y22f{bottom:667.725000px;}
.y1a5{bottom:668.625000px;}
.y215{bottom:669.705000px;}
.y164{bottom:671.505000px;}
.ya6{bottom:672.225000px;}
.y7d{bottom:673.665000px;}
.y274{bottom:674.205000px;}
.y25d{bottom:676.725000px;}
.yd2{bottom:678.705000px;}
.yfb{bottom:680.505000px;}
.y191{bottom:684.105000px;}
.y45{bottom:684.825000px;}
.y1a4{bottom:685.905000px;}
.y214{bottom:686.985000px;}
.y163{bottom:688.605000px;}
.ya5{bottom:689.505000px;}
.y1e3{bottom:690.585000px;}
.y7c{bottom:690.945000px;}
.y273{bottom:691.485000px;}
.y25c{bottom:694.005000px;}
.yd1{bottom:695.985000px;}
.yfa{bottom:697.785000px;}
.y1c8{bottom:698.505000px;}
.y44{bottom:702.105000px;}
.y1a3{bottom:703.185000px;}
.y162{bottom:704.265000px;}
.ya4{bottom:706.785000px;}
.y7b{bottom:708.045000px;}
.y25b{bottom:711.285000px;}
.yd0{bottom:713.265000px;}
.yf9{bottom:715.065000px;}
.y1c7{bottom:715.785000px;}
.y43{bottom:719.385000px;}
.y160{bottom:719.745000px;}
.y1a2{bottom:720.465000px;}
.y213{bottom:721.545000px;}
.y1e2{bottom:722.445000px;}
.ya3{bottom:724.065000px;}
.y7a{bottom:725.325000px;}
.y8{bottom:726.298500px;}
.y22e{bottom:728.565000px;}
.y190{bottom:730.545000px;}
.yf8{bottom:732.345000px;}
.y1c6{bottom:733.065000px;}
.y42{bottom:736.305000px;}
.y1a1{bottom:737.745000px;}
.y212{bottom:738.825000px;}
.ycf{bottom:739.545000px;}
.ya2{bottom:741.345000px;}
.y79{bottom:742.605000px;}
.y248{bottom:743.325000px;}
.y22d{bottom:745.845000px;}
.y272{bottom:747.825000px;}
.yf7{bottom:749.445000px;}
.y25a{bottom:750.345000px;}
.y4{bottom:752.599495px;}
.y41{bottom:753.765000px;}
.y1e1{bottom:754.140000px;}
.y1a0{bottom:755.025000px;}
.y129{bottom:755.745000px;}
.y211{bottom:756.105000px;}
.yce{bottom:756.825000px;}
.ya1{bottom:758.445000px;}
.y1c5{bottom:759.345000px;}
.y78{bottom:759.885000px;}
.y247{bottom:760.605000px;}
.y18f{bottom:761.685000px;}
.y22c{bottom:762.945000px;}
.y15f{bottom:766.365000px;}
.yf6{bottom:766.725000px;}
.y259{bottom:767.445000px;}
.y271{bottom:769.605000px;}
.y35{bottom:769.800000px;}
.y210{bottom:773.205000px;}
.ycd{bottom:774.105000px;}
.ya0{bottom:775.725000px;}
.y1c4{bottom:776.445000px;}
.y77{bottom:777.165000px;}
.y246{bottom:777.705000px;}
.y19f{bottom:780.765000px;}
.yf5{bottom:784.005000px;}
.y128{bottom:784.365000px;}
.y1f8{bottom:784.725000px;}
.y1e0{bottom:786.000000px;}
.y270{bottom:786.705000px;}
.y258{bottom:789.225000px;}
.ycc{bottom:791.205000px;}
.y9f{bottom:793.005000px;}
.y1c3{bottom:793.725000px;}
.y15e{bottom:797.325000px;}
.y20f{bottom:799.485000px;}
.yf4{bottom:801.285000px;}
.y1f7{bottom:802.005000px;}
.y76{bottom:803.265000px;}
.y26f{bottom:803.985000px;}
.y19e{bottom:805.425000px;}
.y257{bottom:806.505000px;}
.ycb{bottom:808.485000px;}
.y9e{bottom:810.285000px;}
.y127{bottom:811.005000px;}
.y20e{bottom:816.765000px;}
.y1df{bottom:817.845000px;}
.y1f6{bottom:819.285000px;}
.y1c2{bottom:820.005000px;}
.y75{bottom:820.545000px;}
.y18d{bottom:823.785000px;}
.yca{bottom:825.765000px;}
.y9d{bottom:827.565000px;}
.y126{bottom:828.285000px;}
.y15b{bottom:828.465000px;}
.y20d{bottom:834.045000px;}
.y1f5{bottom:836.565000px;}
.y1c1{bottom:837.285000px;}
.y74{bottom:837.825000px;}
.y22b{bottom:841.065000px;}
.yc9{bottom:843.045000px;}
.y9c{bottom:844.845000px;}
.y125{bottom:845.565000px;}
.y1de{bottom:849.525000px;}
.y20c{bottom:851.325000px;}
.y1c0{bottom:854.565000px;}
.y73{bottom:855.105000px;}
.y245{bottom:855.825000px;}
.y22a{bottom:858.345000px;}
.y159{bottom:859.425000px;}
.yc8{bottom:860.325000px;}
.y9b{bottom:861.945000px;}
.y124{bottom:862.845000px;}
.y20b{bottom:868.605000px;}
.y1bf{bottom:871.845000px;}
.y72{bottom:872.385000px;}
.y244{bottom:873.105000px;}
.y229{bottom:875.445000px;}
.yc7{bottom:877.605000px;}
.y9a{bottom:879.225000px;}
.y3{bottom:879.369000px;}
.y123{bottom:879.945000px;}
.y1dd{bottom:881.385000px;}
.y188{bottom:885.885000px;}
.y1be{bottom:888.945000px;}
.y71{bottom:889.665000px;}
.y155{bottom:890.565000px;}
.y289{bottom:892.725000px;}
.y20a{bottom:894.705000px;}
.yf3{bottom:896.505000px;}
.y122{bottom:897.225000px;}
.y26e{bottom:899.250000px;}
.yc6{bottom:903.750000px;}
.y99{bottom:905.550000px;}
.y1bd{bottom:906.270000px;}
.y70{bottom:906.810000px;}
.y209{bottom:912.030000px;}
.y1dc{bottom:913.110000px;}
.yf2{bottom:913.830000px;}
.y121{bottom:914.550000px;}
.y26d{bottom:916.530000px;}
.yc5{bottom:921.030000px;}
.y154{bottom:921.570000px;}
.y98{bottom:922.830000px;}
.y1bc{bottom:923.550000px;}
.y6f{bottom:924.090000px;}
.y208{bottom:929.310000px;}
.y34{bottom:930.030000px;}
.y120{bottom:931.830000px;}
.y243{bottom:933.810000px;}
.y256{bottom:936.330000px;}
.yc4{bottom:938.310000px;}
.yf1{bottom:939.750000px;}
.y97{bottom:940.110000px;}
.y1bb{bottom:940.830000px;}
.y6e{bottom:941.370000px;}
.y1db{bottom:944.970000px;}
.y2{bottom:945.126001px;}
.y207{bottom:946.590000px;}
.y187{bottom:948.030000px;}
.y11f{bottom:949.110000px;}
.y242{bottom:951.090000px;}
.y153{bottom:952.710000px;}
.y228{bottom:953.610000px;}
.y33{bottom:954.690000px;}
.yc3{bottom:955.590000px;}
.y96{bottom:957.390000px;}
.y1ba{bottom:958.110000px;}
.y6d{bottom:958.650000px;}
.y186{bottom:963.510000px;}
.y206{bottom:963.870000px;}
.yf0{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.y152{bottom:968.190000px;}
.y241{bottom:968.370000px;}
.y227{bottom:970.890000px;}
.yc2{bottom:972.870000px;}
.y32{bottom:973.770000px;}
.y95{bottom:974.490000px;}
.y1f4{bottom:975.390000px;}
.y1da{bottom:976.830000px;}
.y205{bottom:980.970000px;}
.yef{bottom:983.490000px;}
.y151{bottom:983.670000px;}
.y1b9{bottom:984.390000px;}
.y6c{bottom:984.930000px;}
.y226{bottom:987.990000px;}
.yc1{bottom:989.970000px;}
.y94{bottom:991.770000px;}
.y1f3{bottom:992.490000px;}
.y31{bottom:992.670000px;}
.y112{bottom:998.250000px;}
.y14e{bottom:999.150000px;}
.yee{bottom:1000.770000px;}
.y1b8{bottom:1001.490000px;}
.y6b{bottom:1002.210000px;}
.y288{bottom:1005.270000px;}
.yc0{bottom:1007.250000px;}
.y1d9{bottom:1008.510000px;}
.y93{bottom:1009.050000px;}
.y1f2{bottom:1009.770000px;}
.y183{bottom:1010.130000px;}
.y30{bottom:1011.570000px;}
.y111{bottom:1015.530000px;}
.y11e{bottom:1018.050000px;}
.y1b7{bottom:1018.770000px;}
.y6a{bottom:1019.310000px;}
.y2f{bottom:1023.450000px;}
.ybf{bottom:1024.530000px;}
.yed{bottom:1027.050000px;}
.y240{bottom:1029.030000px;}
.y14b{bottom:1031.730000px;}
.y110{bottom:1032.810000px;}
.y92{bottom:1035.330000px;}
.y1b6{bottom:1036.050000px;}
.y69{bottom:1036.590000px;}
.y1d8{bottom:1040.370000px;}
.ybe{bottom:1041.810000px;}
.y2e{bottom:1042.350000px;}
.yec{bottom:1044.330000px;}
.y23f{bottom:1046.310000px;}
.y255{bottom:1048.830000px;}
.y10f{bottom:1050.090000px;}
.y91{bottom:1052.610000px;}
.y1b5{bottom:1053.330000px;}
.y68{bottom:1053.870000px;}
.y204{bottom:1059.090000px;}
.y11d{bottom:1061.610000px;}
.y2d{bottom:1062.690000px;}
.y23e{bottom:1063.590000px;}
.y225{bottom:1066.110000px;}
.y10e{bottom:1067.370000px;}
.ybd{bottom:1068.090000px;}
.y90{bottom:1069.710000px;}
.yeb{bottom:1070.610000px;}
.y67{bottom:1071.150000px;}
.y182{bottom:1072.230000px;}
.y14a{bottom:1076.010000px;}
.y203{bottom:1076.370000px;}
.y11c{bottom:1078.710000px;}
.y2c{bottom:1080.690000px;}
.y23d{bottom:1080.870000px;}
.y224{bottom:1083.210000px;}
.ybc{bottom:1085.370000px;}
.y8f{bottom:1086.990000px;}
.yea{bottom:1087.710000px;}
.y66{bottom:1088.430000px;}
.y10d{bottom:1093.110000px;}
.y11b{bottom:1095.990000px;}
.y26c{bottom:1097.970000px;}
.y223{bottom:1100.490000px;}
.ybb{bottom:1102.470000px;}
.ye9{bottom:1104.990000px;}
.y65{bottom:1105.710000px;}
.y2b{bottom:1106.430000px;}
.y8e{bottom:1112.910000px;}
.y222{bottom:1117.770000px;}
.y181{bottom:1118.850000px;}
.yba{bottom:1119.750000px;}
.ye8{bottom:1122.270000px;}
.y64{bottom:1131.450000px;}
.y2a{bottom:1131.990000px;}
.y180{bottom:1135.050000px;}
.yb9{bottom:1137.030000px;}
.y8d{bottom:1139.190000px;}
.ye7{bottom:1139.550000px;}
.y63{bottom:1146.420000px;}
.y17e{bottom:1151.280000px;}
.y62{bottom:1155.060000px;}
.y28{bottom:1157.580000px;}
.y5e{bottom:1172.700000px;}
.y25{bottom:1175.220000px;}
.h33{height:1.800000px;}
.h35{height:5.653125px;}
.h34{height:5.805000px;}
.h24{height:15.465000px;}
.h1e{height:15.480000px;}
.h36{height:15.510000px;}
.h25{height:15.645000px;}
.h2a{height:15.660000px;}
.h2b{height:17.100000px;}
.h14{height:17.666016px;}
.h1b{height:18.140625px;}
.h2d{height:18.345000px;}
.h3c{height:21.585000px;}
.h2c{height:23.070000px;}
.h2e{height:30.945000px;}
.h28{height:30.960000px;}
.h26{height:30.982500px;}
.h3f{height:30.990000px;}
.h23{height:31.125000px;}
.h27{height:31.140000px;}
.h3d{height:31.161000px;}
.h9{height:32.040000px;}
.h7{height:32.130000px;}
.h16{height:33.541875px;}
.h1a{height:34.560000px;}
.h21{height:38.838867px;}
.h22{height:39.049805px;}
.h10{height:40.964766px;}
.h17{height:41.385000px;}
.h13{height:43.215117px;}
.ha{height:43.506914px;}
.h6{height:45.900000px;}
.h32{height:46.425000px;}
.h3a{height:46.440000px;}
.h2f{height:46.605000px;}
.h29{height:46.620000px;}
.h31{height:46.641000px;}
.h3b{height:46.650000px;}
.h18{height:47.321367px;}
.h3{height:48.195000px;}
.h1c{height:52.971680px;}
.h19{height:52.998047px;}
.h1f{height:54.421875px;}
.h2{height:55.080000px;}
.h1d{height:58.621992px;}
.he{height:58.651172px;}
.h11{height:60.226875px;}
.h37{height:62.085000px;}
.h39{height:62.100000px;}
.h38{height:62.122500px;}
.hb{height:63.824414px;}
.hf{height:66.757500px;}
.hd{height:67.992539px;}
.hc{height:70.664062px;}
.h30{height:77.565000px;}
.h3e{height:77.610000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h12{height:156.075000px;}
.h20{height:295.050000px;}
.h15{height:1262.684910px;}
.h8{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w15{width:37.965000px;}
.w12{width:38.325000px;}
.w10{width:39.060000px;}
.wf{width:42.300000px;}
.w13{width:44.085000px;}
.w1e{width:46.605000px;}
.w1d{width:47.145000px;}
.w1a{width:48.585000px;}
.w1c{width:49.161000px;}
.w19{width:49.896000px;}
.w17{width:56.541000px;}
.w27{width:63.000000px;}
.w28{width:63.180000px;}
.w1b{width:65.145000px;}
.w6{width:72.705000px;}
.wc{width:73.425000px;}
.w29{width:73.836000px;}
.w16{width:75.225000px;}
.w2c{width:82.965000px;}
.w25{width:83.685000px;}
.w20{width:84.045000px;}
.w24{width:84.261000px;}
.w2b{width:84.441000px;}
.w2a{width:92.325000px;}
.w22{width:94.896000px;}
.w23{width:95.025000px;}
.w26{width:95.601000px;}
.w14{width:98.121000px;}
.we{width:100.461000px;}
.w11{width:100.836000px;}
.w21{width:105.681000px;}
.w18{width:112.860000px;}
.wa{width:115.221000px;}
.w8{width:193.515000px;}
.w1f{width:244.635000px;}
.w7{width:356.640000px;}
.wb{width:429.375000px;}
.wd{width:479.250000px;}
.w5{width:479.970000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w9{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4d{left:3.765000px;}
.x6{left:8.085000px;}
.x2a{left:10.260000px;}
.x21{left:12.780000px;}
.x8{left:14.580000px;}
.x1f{left:16.380000px;}
.x4e{left:17.460000px;}
.x28{left:19.065000px;}
.x49{left:20.700000px;}
.x29{left:22.140000px;}
.x37{left:23.580000px;}
.x35{left:25.050000px;}
.x45{left:26.805000px;}
.x41{left:28.605000px;}
.x2e{left:31.320000px;}
.x36{left:32.565000px;}
.x3e{left:36.180000px;}
.x42{left:37.650000px;}
.x3c{left:40.350000px;}
.x44{left:42.105000px;}
.x43{left:47.340000px;}
.x18{left:52.590000px;}
.x19{left:97.770000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x47{left:166.725000px;}
.x5{left:170.145000px;}
.x15{left:178.245000px;}
.x4f{left:191.370000px;}
.x9{left:193.530000px;}
.xd{left:196.950000px;}
.x4{left:203.484001px;}
.xa{left:207.030000px;}
.xf{left:227.730000px;}
.x2b{left:228.810000px;}
.x46{left:237.090000px;}
.x17{left:243.585000px;}
.x2c{left:246.105000px;}
.x3a{left:247.710000px;}
.x10{left:252.570000px;}
.x1d{left:254.550000px;}
.x3b{left:255.645000px;}
.x11{left:259.230000px;}
.x48{left:263.055000px;}
.x1e{left:272.235000px;}
.x12{left:278.715000px;}
.x16{left:293.475000px;}
.xe{left:298.335000px;}
.x2d{left:302.655000px;}
.x20{left:315.255000px;}
.x39{left:326.235000px;}
.xb{left:335.235000px;}
.x1b{left:349.275000px;}
.x22{left:355.035000px;}
.x3d{left:362.055000px;}
.x1c{left:370.695000px;}
.x14{left:386.175000px;}
.x4a{left:390.675000px;}
.x2f{left:415.515000px;}
.xc{left:446.505000px;}
.x3{left:454.959000px;}
.x23{left:456.600000px;}
.x3f{left:457.680000px;}
.x30{left:465.420000px;}
.x24{left:495.660000px;}
.x31{left:514.020000px;}
.x13{left:528.420000px;}
.x25{left:540.480000px;}
.x40{left:553.440000px;}
.x4b{left:558.300000px;}
.x32{left:579.180000px;}
.x33{left:628.350000px;}
.x26{left:639.330000px;}
.x4c{left:643.470000px;}
.x7{left:650.130000px;}
.x34{left:675.510000px;}
.x27{left:678.030000px;}
.x38{left:717.630000px;}
.x1a{left:721.050000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-1.328000pt;}
.ls29{letter-spacing:-1.232000pt;}
.ls26{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls1c{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.409067pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.269867pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls19{letter-spacing:-0.112000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls20{letter-spacing:0.094720pt;}
.ls12{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.097067pt;}
.ls1b{letter-spacing:0.112000pt;}
.ls1f{letter-spacing:0.120533pt;}
.ls17{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.183680pt;}
.lsc{letter-spacing:0.230933pt;}
.ls22{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.409067pt;}
.ls13{letter-spacing:0.456533pt;}
.ls11{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.736000pt;}
.ls25{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls21{letter-spacing:5.280000pt;}
.ls27{letter-spacing:15.520000pt;}
.ls24{letter-spacing:23.964160pt;}
.ls4{letter-spacing:52.480000pt;}
.ls3{letter-spacing:53.120000pt;}
.ls5{letter-spacing:53.226667pt;}
.ls1{letter-spacing:1334.075307pt;}
.ws8{word-spacing:-34.560000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws1a{word-spacing:-14.240000pt;}
.ws19{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.736533pt;}
.wsb{word-spacing:-13.689067pt;}
.ws4{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws1b{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.870933pt;}
.ws18{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.592000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws17{word-spacing:-12.112000pt;}
.ws1c{word-spacing:-12.048000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.952000pt;}
.ws14{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.888000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws0{word-spacing:0.000000pt;}
._1b{margin-left:-5.856000pt;}
._d{margin-left:-3.543680pt;}
._3{margin-left:-2.170240pt;}
._1{margin-left:-0.910720pt;}
._0{width:1.009280pt;}
._a{width:2.087040pt;}
._b{width:3.437440pt;}
._c{width:4.332587pt;}
._14{width:5.916373pt;}
._8{width:6.810240pt;}
._9{width:8.181120pt;}
._13{width:9.119147pt;}
._e{width:10.039680pt;}
._f{width:11.022720pt;}
._16{width:12.316160pt;}
._10{width:14.332800pt;}
._12{width:15.342080pt;}
._5{width:16.626560pt;}
._4{width:17.635840pt;}
._2e{width:18.538880pt;}
._6{width:19.470507pt;}
._23{width:20.640000pt;}
._24{width:21.600000pt;}
._18{width:22.494720pt;}
._17{width:24.222720pt;}
._1e{width:25.959680pt;}
._30{width:26.994347pt;}
._19{width:28.366080pt;}
._1a{width:30.132907pt;}
._35{width:31.313493pt;}
._39{width:32.983040pt;}
._31{width:33.996800pt;}
._34{width:35.006080pt;}
._38{width:35.962240pt;}
._7{width:38.883840pt;}
._36{width:40.053120pt;}
._32{width:41.539840pt;}
._33{width:42.444800pt;}
._28{width:44.444160pt;}
._22{width:49.536000pt;}
._3a{width:50.782720pt;}
._2f{width:51.792000pt;}
._2{width:52.711040pt;}
._1f{width:62.592000pt;}
._2c{width:67.248000pt;}
._2d{width:68.352000pt;}
._29{width:73.248000pt;}
._37{width:81.246080pt;}
._26{width:83.856000pt;}
._21{width:95.374720pt;}
._20{width:101.242240pt;}
._2a{width:105.264000pt;}
._3b{width:108.916480pt;}
._1c{width:118.080000pt;}
._25{width:122.986240pt;}
._2b{width:132.144000pt;}
._27{width:139.488000pt;}
._1d{width:142.416000pt;}
._15{width:754.880000pt;}
._11{width:1440.315947pt;}
.fse{font-size:5.120000pt;}
.fsa{font-size:16.000000pt;}
.fsb{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y17f{bottom:0.480000pt;}
.y5c{bottom:2.546667pt;}
.y12a{bottom:2.560000pt;}
.y1d4{bottom:2.706667pt;}
.y14f{bottom:2.720000pt;}
.y17d{bottom:2.866667pt;}
.y144{bottom:2.880000pt;}
.y3d{bottom:3.026667pt;}
.y150{bottom:3.040000pt;}
.y61{bottom:3.200000pt;}
.y166{bottom:3.680000pt;}
.y165{bottom:4.000000pt;}
.y16d{bottom:4.160000pt;}
.y167{bottom:4.320000pt;}
.y16c{bottom:5.120000pt;}
.y1a8{bottom:5.280000pt;}
.y16e{bottom:5.440000pt;}
.y1aa{bottom:5.600000pt;}
.y59{bottom:5.746667pt;}
.y16a{bottom:6.266667pt;}
.y169{bottom:9.306667pt;}
.y14c{bottom:9.600000pt;}
.y16b{bottom:9.626667pt;}
.y1d2{bottom:9.746667pt;}
.y26{bottom:9.760000pt;}
.y157{bottom:9.800000pt;}
.y1d5{bottom:9.906667pt;}
.y15a{bottom:9.920000pt;}
.y27{bottom:10.240000pt;}
.y5f{bottom:12.480000pt;}
.y5b{bottom:14.866667pt;}
.y15c{bottom:16.320000pt;}
.y156{bottom:16.360000pt;}
.y14d{bottom:16.480000pt;}
.y17b{bottom:16.626667pt;}
.y15d{bottom:16.640000pt;}
.y196{bottom:16.666667pt;}
.y158{bottom:16.680000pt;}
.y177{bottom:16.786667pt;}
.y143{bottom:16.800000pt;}
.y1d1{bottom:16.826667pt;}
.y60{bottom:18.560000pt;}
.y1cc{bottom:23.200000pt;}
.y185{bottom:23.520000pt;}
.y18a{bottom:23.560000pt;}
.y18e{bottom:23.680000pt;}
.y3c{bottom:26.706667pt;}
.y5a{bottom:27.186667pt;}
.y17a{bottom:30.066667pt;}
.y192{bottom:30.080000pt;}
.y176{bottom:30.226667pt;}
.y161{bottom:30.240000pt;}
.y195{bottom:30.266667pt;}
.y17c{bottom:30.386667pt;}
.y193{bottom:30.400000pt;}
.y178{bottom:30.546667pt;}
.y142{bottom:30.560000pt;}
.y197{bottom:30.586667pt;}
.y18c{bottom:30.600000pt;}
.y7{bottom:31.933340pt;}
.y1cb{bottom:36.960000pt;}
.y1d7{bottom:37.120000pt;}
.y3b{bottom:42.066667pt;}
.y184{bottom:44.000000pt;}
.y189{bottom:44.040000pt;}
.y13b{bottom:44.320000pt;}
.y18b{bottom:44.360000pt;}
.y3a{bottom:57.426667pt;}
.y174{bottom:57.760000pt;}
.y13a{bottom:58.080000pt;}
.y6{bottom:59.133337pt;}
.y40{bottom:65.426667pt;}
.y141{bottom:71.680000pt;}
.y139{bottom:72.000000pt;}
.y39{bottom:72.626667pt;}
.y3f{bottom:80.626667pt;}
.y140{bottom:85.440000pt;}
.y138{bottom:85.760000pt;}
.y5{bottom:86.333337pt;}
.y38{bottom:87.986667pt;}
.y3e{bottom:95.986667pt;}
.y137{bottom:99.520000pt;}
.y37{bottom:111.026667pt;}
.y136{bottom:113.280000pt;}
.y24{bottom:123.790666pt;}
.y36{bottom:126.746667pt;}
.y135{bottom:126.880000pt;}
.y13f{bottom:127.200000pt;}
.y134{bottom:140.640000pt;}
.y13e{bottom:140.960000pt;}
.y133{bottom:154.720000pt;}
.y132{bottom:168.480000pt;}
.y1b{bottom:175.052000pt;}
.y131{bottom:182.426667pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y130{bottom:196.186667pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y12f{bottom:209.626667pt;}
.y13d{bottom:209.946667pt;}
.y12e{bottom:223.706667pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y12d{bottom:237.626667pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y29{bottom:247.386667pt;}
.y12c{bottom:251.066667pt;}
.y13c{bottom:251.386667pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y179{bottom:284.200000pt;}
.y5d{bottom:286.426667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y287{bottom:288.026667pt;}
.ye6{bottom:288.666667pt;}
.yb8{bottom:289.466667pt;}
.y26b{bottom:290.266667pt;}
.y1d6{bottom:293.000000pt;}
.y202{bottom:296.826667pt;}
.y58{bottom:297.320000pt;}
.y1f1{bottom:302.426667pt;}
.y286{bottom:303.386667pt;}
.ye5{bottom:304.026667pt;}
.yb7{bottom:304.826667pt;}
.y26a{bottom:305.466667pt;}
.y12{bottom:309.452000pt;}
.y254{bottom:310.586667pt;}
.y10c{bottom:312.186667pt;}
.y149{bottom:313.946667pt;}
.y11a{bottom:315.706667pt;}
.y1f0{bottom:317.786667pt;}
.y285{bottom:318.586667pt;}
.ye4{bottom:319.386667pt;}
.yb6{bottom:320.186667pt;}
.y269{bottom:320.826667pt;}
.y1d3{bottom:321.160000pt;}
.y1b4{bottom:323.706667pt;}
.y175{bottom:325.480000pt;}
.y253{bottom:325.946667pt;}
.y10b{bottom:327.546667pt;}
.y23c{bottom:328.186667pt;}
.y148{bottom:329.306667pt;}
.y119{bottom:331.066667pt;}
.y1ef{bottom:332.986667pt;}
.y284{bottom:333.946667pt;}
.ye3{bottom:334.586667pt;}
.yb5{bottom:335.546667pt;}
.y268{bottom:336.186667pt;}
.y1b3{bottom:339.066667pt;}
.y57{bottom:341.626667pt;}
.y10a{bottom:342.906667pt;}
.y23b{bottom:343.546667pt;}
.y11{bottom:343.809333pt;}
.y8c{bottom:344.346667pt;}
.y252{bottom:345.306667pt;}
.y118{bottom:346.426667pt;}
.y1ee{bottom:348.346667pt;}
.y1d0{bottom:349.480000pt;}
.ye2{bottom:349.946667pt;}
.yb4{bottom:350.906667pt;}
.y267{bottom:351.546667pt;}
.y147{bottom:352.346667pt;}
.y283{bottom:353.306667pt;}
.y56{bottom:354.426667pt;}
.y109{bottom:358.266667pt;}
.y23a{bottom:358.906667pt;}
.y251{bottom:360.666667pt;}
.y1b2{bottom:362.426667pt;}
.y10{bottom:362.706666pt;}
.y1ed{bottom:363.706667pt;}
.ye1{bottom:365.346667pt;}
.y201{bottom:366.306667pt;}
.y173{bottom:366.946667pt;}
.y8b{bottom:368.066667pt;}
.y282{bottom:368.706667pt;}
.y117{bottom:369.346667pt;}
.y266{bottom:370.946667pt;}
.y55{bottom:371.746667pt;}
.y108{bottom:373.506667pt;}
.yb3{bottom:373.986667pt;}
.y146{bottom:375.586667pt;}
.y250{bottom:376.066667pt;}
.y1cf{bottom:377.826667pt;}
.y239{bottom:378.306667pt;}
.y54{bottom:378.786667pt;}
.y1ec{bottom:379.106667pt;}
.ye0{bottom:380.706667pt;}
.y200{bottom:381.506667pt;}
.y8a{bottom:383.426667pt;}
.y1b1{bottom:385.346667pt;}
.y265{bottom:386.306667pt;}
.y221{bottom:387.426667pt;}
.y281{bottom:388.066667pt;}
.y107{bottom:388.866667pt;}
.y116{bottom:393.026667pt;}
.y238{bottom:393.506667pt;}
.y53{bottom:394.146667pt;}
.y1eb{bottom:394.466667pt;}
.y24f{bottom:395.426667pt;}
.ydf{bottom:396.066667pt;}
.y1ff{bottom:396.866667pt;}
.y145{bottom:397.346667pt;}
.yb2{bottom:397.506667pt;}
.y89{bottom:398.786667pt;}
.y264{bottom:401.506667pt;}
.y280{bottom:403.426667pt;}
.y1ce{bottom:405.986667pt;}
.y1b0{bottom:407.106667pt;}
.y12b{bottom:408.866667pt;}
.y52{bottom:409.346667pt;}
.y1ea{bottom:409.826667pt;}
.y220{bottom:410.626667pt;}
.yde{bottom:411.426667pt;}
.y106{bottom:411.906667pt;}
.y1fe{bottom:412.226667pt;}
.yb1{bottom:412.866667pt;}
.y88{bottom:414.146667pt;}
.y115{bottom:415.906667pt;}
.y27f{bottom:418.626667pt;}
.y263{bottom:420.866667pt;}
.y1af{bottom:421.026667pt;}
.y51{bottom:424.706667pt;}
.y21f{bottom:425.986667pt;}
.ydd{bottom:426.626667pt;}
.yb0{bottom:428.226667pt;}
.y87{bottom:429.346667pt;}
.yf{bottom:430.990669pt;}
.y1e9{bottom:432.706667pt;}
.y27e{bottom:433.986667pt;}
.y1cd{bottom:434.306667pt;}
.y105{bottom:435.586667pt;}
.y172{bottom:435.906667pt;}
.y262{bottom:436.226667pt;}
.y19d{bottom:436.706667pt;}
.y114{bottom:437.826667pt;}
.y50{bottom:439.746667pt;}
.y1ae{bottom:440.546667pt;}
.y21e{bottom:441.346667pt;}
.ydc{bottom:441.986667pt;}
.y237{bottom:443.586667pt;}
.y1e8{bottom:444.226667pt;}
.y86{bottom:444.706667pt;}
.ye{bottom:446.990669pt;}
.y104{bottom:450.946667pt;}
.yaf{bottom:451.586667pt;}
.y19c{bottom:452.066667pt;}
.y27d{bottom:453.346667pt;}
.y4f{bottom:455.426667pt;}
.y21d{bottom:456.706667pt;}
.ydb{bottom:457.346667pt;}
.y85{bottom:460.066667pt;}
.y1ad{bottom:460.386667pt;}
.y24e{bottom:460.706667pt;}
.y113{bottom:461.186667pt;}
.y1ca{bottom:462.626667pt;}
.y236{bottom:462.946667pt;}
.yd{bottom:462.990669pt;}
.y103{bottom:466.306667pt;}
.yae{bottom:466.946667pt;}
.y19b{bottom:467.426667pt;}
.y27c{bottom:468.706667pt;}
.y4e{bottom:470.786667pt;}
.y1e7{bottom:472.546667pt;}
.yda{bottom:472.706667pt;}
.y84{bottom:475.426667pt;}
.y24d{bottom:476.066667pt;}
.y171{bottom:477.346667pt;}
.y235{bottom:478.306667pt;}
.yc{bottom:478.990666pt;}
.y21c{bottom:480.066667pt;}
.y1ac{bottom:480.226667pt;}
.y102{bottom:481.506667pt;}
.y261{bottom:482.306667pt;}
.y27b{bottom:484.066667pt;}
.y4d{bottom:486.146667pt;}
.yad{bottom:490.306667pt;}
.y19a{bottom:490.786667pt;}
.y24c{bottom:491.426667pt;}
.y234{bottom:493.506667pt;}
.yb{bottom:494.990666pt;}
.y21b{bottom:495.426667pt;}
.yd9{bottom:496.066667pt;}
.y101{bottom:496.866667pt;}
.y83{bottom:498.786667pt;}
.y27a{bottom:499.426667pt;}
.y1ab{bottom:500.066667pt;}
.y1e6{bottom:500.706667pt;}
.y4c{bottom:501.346667pt;}
.y260{bottom:501.506667pt;}
.y170{bottom:505.026667pt;}
.yac{bottom:505.506667pt;}
.y21a{bottom:510.626667pt;}
.yd8{bottom:511.426667pt;}
.y1fd{bottom:512.226667pt;}
.y233{bottom:512.866667pt;}
.y199{bottom:513.666667pt;}
.y82{bottom:514.146667pt;}
.y4b{bottom:516.706667pt;}
.y25f{bottom:516.866667pt;}
.y279{bottom:518.626667pt;}
.y1a9{bottom:520.066667pt;}
.y100{bottom:520.226667pt;}
.yab{bottom:520.866667pt;}
.y198{bottom:525.186667pt;}
.y219{bottom:525.986667pt;}
.yd7{bottom:526.626667pt;}
.y1fc{bottom:527.586667pt;}
.y232{bottom:528.226667pt;}
.y1e5{bottom:529.026667pt;}
.y81{bottom:529.346667pt;}
.y4a{bottom:532.066667pt;}
.y25e{bottom:532.226667pt;}
.y16f{bottom:532.546667pt;}
.y278{bottom:533.986667pt;}
.yff{bottom:535.586667pt;}
.yaa{bottom:536.226667pt;}
.y1a7{bottom:539.906667pt;}
.y218{bottom:541.346667pt;}
.yd6{bottom:541.986667pt;}
.y1fb{bottom:542.946667pt;}
.y1c9{bottom:543.266667pt;}
.y231{bottom:543.586667pt;}
.y80{bottom:544.706667pt;}
.y49{bottom:547.426667pt;}
.y277{bottom:549.346667pt;}
.ya9{bottom:551.586667pt;}
.y217{bottom:556.706667pt;}
.yd5{bottom:557.346667pt;}
.yfe{bottom:558.946667pt;}
.y7f{bottom:560.066667pt;}
.y24b{bottom:560.706667pt;}
.y48{bottom:562.786667pt;}
.y230{bottom:562.946667pt;}
.y1fa{bottom:565.826667pt;}
.y194{bottom:566.626667pt;}
.ya8{bottom:566.946667pt;}
.y276{bottom:568.706667pt;}
.y1a6{bottom:570.786667pt;}
.y216{bottom:572.066667pt;}
.yd4{bottom:572.706667pt;}
.ya{bottom:573.786667pt;}
.yfd{bottom:574.146667pt;}
.y24a{bottom:576.066667pt;}
.y168{bottom:576.386667pt;}
.y47{bottom:578.146667pt;}
.ya7{bottom:582.173333pt;}
.y7e{bottom:583.453333pt;}
.y275{bottom:584.093333pt;}
.y1e4{bottom:585.533333pt;}
.yd3{bottom:588.093333pt;}
.y1f9{bottom:589.213333pt;}
.yfc{bottom:589.533333pt;}
.y249{bottom:591.293333pt;}
.y9{bottom:592.685334pt;}
.y46{bottom:593.373333pt;}
.y22f{bottom:593.533333pt;}
.y1a5{bottom:594.333333pt;}
.y215{bottom:595.293333pt;}
.y164{bottom:596.893333pt;}
.ya6{bottom:597.533333pt;}
.y7d{bottom:598.813333pt;}
.y274{bottom:599.293333pt;}
.y25d{bottom:601.533333pt;}
.yd2{bottom:603.293333pt;}
.yfb{bottom:604.893333pt;}
.y191{bottom:608.093333pt;}
.y45{bottom:608.733333pt;}
.y1a4{bottom:609.693333pt;}
.y214{bottom:610.653333pt;}
.y163{bottom:612.093333pt;}
.ya5{bottom:612.893333pt;}
.y1e3{bottom:613.853333pt;}
.y7c{bottom:614.173333pt;}
.y273{bottom:614.653333pt;}
.y25c{bottom:616.893333pt;}
.yd1{bottom:618.653333pt;}
.yfa{bottom:620.253333pt;}
.y1c8{bottom:620.893333pt;}
.y44{bottom:624.093333pt;}
.y1a3{bottom:625.053333pt;}
.y162{bottom:626.013333pt;}
.ya4{bottom:628.253333pt;}
.y7b{bottom:629.373333pt;}
.y25b{bottom:632.253333pt;}
.yd0{bottom:634.013333pt;}
.yf9{bottom:635.613333pt;}
.y1c7{bottom:636.253333pt;}
.y43{bottom:639.453333pt;}
.y160{bottom:639.773333pt;}
.y1a2{bottom:640.413333pt;}
.y213{bottom:641.373333pt;}
.y1e2{bottom:642.173333pt;}
.ya3{bottom:643.613333pt;}
.y7a{bottom:644.733333pt;}
.y8{bottom:645.598667pt;}
.y22e{bottom:647.613333pt;}
.y190{bottom:649.373333pt;}
.yf8{bottom:650.973333pt;}
.y1c6{bottom:651.613333pt;}
.y42{bottom:654.493333pt;}
.y1a1{bottom:655.773333pt;}
.y212{bottom:656.733333pt;}
.ycf{bottom:657.373333pt;}
.ya2{bottom:658.973333pt;}
.y79{bottom:660.093333pt;}
.y248{bottom:660.733333pt;}
.y22d{bottom:662.973333pt;}
.y272{bottom:664.733333pt;}
.yf7{bottom:666.173333pt;}
.y25a{bottom:666.973333pt;}
.y4{bottom:668.977329pt;}
.y41{bottom:670.013333pt;}
.y1e1{bottom:670.346667pt;}
.y1a0{bottom:671.133333pt;}
.y129{bottom:671.773333pt;}
.y211{bottom:672.093333pt;}
.yce{bottom:672.733333pt;}
.ya1{bottom:674.173333pt;}
.y1c5{bottom:674.973333pt;}
.y78{bottom:675.453333pt;}
.y247{bottom:676.093333pt;}
.y18f{bottom:677.053333pt;}
.y22c{bottom:678.173333pt;}
.y15f{bottom:681.213333pt;}
.yf6{bottom:681.533333pt;}
.y259{bottom:682.173333pt;}
.y271{bottom:684.093333pt;}
.y35{bottom:684.266667pt;}
.y210{bottom:687.293333pt;}
.ycd{bottom:688.093333pt;}
.ya0{bottom:689.533333pt;}
.y1c4{bottom:690.173333pt;}
.y77{bottom:690.813333pt;}
.y246{bottom:691.293333pt;}
.y19f{bottom:694.013333pt;}
.yf5{bottom:696.893333pt;}
.y128{bottom:697.213333pt;}
.y1f8{bottom:697.533333pt;}
.y1e0{bottom:698.666667pt;}
.y270{bottom:699.293333pt;}
.y258{bottom:701.533333pt;}
.ycc{bottom:703.293333pt;}
.y9f{bottom:704.893333pt;}
.y1c3{bottom:705.533333pt;}
.y15e{bottom:708.733333pt;}
.y20f{bottom:710.653333pt;}
.yf4{bottom:712.253333pt;}
.y1f7{bottom:712.893333pt;}
.y76{bottom:714.013333pt;}
.y26f{bottom:714.653333pt;}
.y19e{bottom:715.933333pt;}
.y257{bottom:716.893333pt;}
.ycb{bottom:718.653333pt;}
.y9e{bottom:720.253333pt;}
.y127{bottom:720.893333pt;}
.y20e{bottom:726.013333pt;}
.y1df{bottom:726.973333pt;}
.y1f6{bottom:728.253333pt;}
.y1c2{bottom:728.893333pt;}
.y75{bottom:729.373333pt;}
.y18d{bottom:732.253333pt;}
.yca{bottom:734.013333pt;}
.y9d{bottom:735.613333pt;}
.y126{bottom:736.253333pt;}
.y15b{bottom:736.413333pt;}
.y20d{bottom:741.373333pt;}
.y1f5{bottom:743.613333pt;}
.y1c1{bottom:744.253333pt;}
.y74{bottom:744.733333pt;}
.y22b{bottom:747.613333pt;}
.yc9{bottom:749.373333pt;}
.y9c{bottom:750.973333pt;}
.y125{bottom:751.613333pt;}
.y1de{bottom:755.133333pt;}
.y20c{bottom:756.733333pt;}
.y1c0{bottom:759.613333pt;}
.y73{bottom:760.093333pt;}
.y245{bottom:760.733333pt;}
.y22a{bottom:762.973333pt;}
.y159{bottom:763.933333pt;}
.yc8{bottom:764.733333pt;}
.y9b{bottom:766.173333pt;}
.y124{bottom:766.973333pt;}
.y20b{bottom:772.093333pt;}
.y1bf{bottom:774.973333pt;}
.y72{bottom:775.453333pt;}
.y244{bottom:776.093333pt;}
.y229{bottom:778.173333pt;}
.yc7{bottom:780.093333pt;}
.y9a{bottom:781.533333pt;}
.y3{bottom:781.661334pt;}
.y123{bottom:782.173333pt;}
.y1dd{bottom:783.453333pt;}
.y188{bottom:787.453333pt;}
.y1be{bottom:790.173333pt;}
.y71{bottom:790.813333pt;}
.y155{bottom:791.613333pt;}
.y289{bottom:793.533333pt;}
.y20a{bottom:795.293333pt;}
.yf3{bottom:796.893333pt;}
.y122{bottom:797.533333pt;}
.y26e{bottom:799.333333pt;}
.yc6{bottom:803.333333pt;}
.y99{bottom:804.933333pt;}
.y1bd{bottom:805.573333pt;}
.y70{bottom:806.053333pt;}
.y209{bottom:810.693333pt;}
.y1dc{bottom:811.653333pt;}
.yf2{bottom:812.293333pt;}
.y121{bottom:812.933333pt;}
.y26d{bottom:814.693333pt;}
.yc5{bottom:818.693333pt;}
.y154{bottom:819.173333pt;}
.y98{bottom:820.293333pt;}
.y1bc{bottom:820.933333pt;}
.y6f{bottom:821.413333pt;}
.y208{bottom:826.053333pt;}
.y34{bottom:826.693333pt;}
.y120{bottom:828.293333pt;}
.y243{bottom:830.053333pt;}
.y256{bottom:832.293333pt;}
.yc4{bottom:834.053333pt;}
.yf1{bottom:835.333333pt;}
.y97{bottom:835.653333pt;}
.y1bb{bottom:836.293333pt;}
.y6e{bottom:836.773333pt;}
.y1db{bottom:839.973333pt;}
.y2{bottom:840.112001pt;}
.y207{bottom:841.413333pt;}
.y187{bottom:842.693333pt;}
.y11f{bottom:843.653333pt;}
.y242{bottom:845.413333pt;}
.y153{bottom:846.853333pt;}
.y228{bottom:847.653333pt;}
.y33{bottom:848.613333pt;}
.yc3{bottom:849.413333pt;}
.y96{bottom:851.013333pt;}
.y1ba{bottom:851.653333pt;}
.y6d{bottom:852.133333pt;}
.y186{bottom:856.453333pt;}
.y206{bottom:856.773333pt;}
.yf0{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.y152{bottom:860.613333pt;}
.y241{bottom:860.773333pt;}
.y227{bottom:863.013333pt;}
.yc2{bottom:864.773333pt;}
.y32{bottom:865.573333pt;}
.y95{bottom:866.213333pt;}
.y1f4{bottom:867.013333pt;}
.y1da{bottom:868.293333pt;}
.y205{bottom:871.973333pt;}
.yef{bottom:874.213333pt;}
.y151{bottom:874.373333pt;}
.y1b9{bottom:875.013333pt;}
.y6c{bottom:875.493333pt;}
.y226{bottom:878.213333pt;}
.yc1{bottom:879.973333pt;}
.y94{bottom:881.573333pt;}
.y1f3{bottom:882.213333pt;}
.y31{bottom:882.373333pt;}
.y112{bottom:887.333333pt;}
.y14e{bottom:888.133333pt;}
.yee{bottom:889.573333pt;}
.y1b8{bottom:890.213333pt;}
.y6b{bottom:890.853333pt;}
.y288{bottom:893.573333pt;}
.yc0{bottom:895.333333pt;}
.y1d9{bottom:896.453333pt;}
.y93{bottom:896.933333pt;}
.y1f2{bottom:897.573333pt;}
.y183{bottom:897.893333pt;}
.y30{bottom:899.173333pt;}
.y111{bottom:902.693333pt;}
.y11e{bottom:904.933333pt;}
.y1b7{bottom:905.573333pt;}
.y6a{bottom:906.053333pt;}
.y2f{bottom:909.733333pt;}
.ybf{bottom:910.693333pt;}
.yed{bottom:912.933333pt;}
.y240{bottom:914.693333pt;}
.y14b{bottom:917.093333pt;}
.y110{bottom:918.053333pt;}
.y92{bottom:920.293333pt;}
.y1b6{bottom:920.933333pt;}
.y69{bottom:921.413333pt;}
.y1d8{bottom:924.773333pt;}
.ybe{bottom:926.053333pt;}
.y2e{bottom:926.533333pt;}
.yec{bottom:928.293333pt;}
.y23f{bottom:930.053333pt;}
.y255{bottom:932.293333pt;}
.y10f{bottom:933.413333pt;}
.y91{bottom:935.653333pt;}
.y1b5{bottom:936.293333pt;}
.y68{bottom:936.773333pt;}
.y204{bottom:941.413333pt;}
.y11d{bottom:943.653333pt;}
.y2d{bottom:944.613333pt;}
.y23e{bottom:945.413333pt;}
.y225{bottom:947.653333pt;}
.y10e{bottom:948.773333pt;}
.ybd{bottom:949.413333pt;}
.y90{bottom:950.853333pt;}
.yeb{bottom:951.653333pt;}
.y67{bottom:952.133333pt;}
.y182{bottom:953.093333pt;}
.y14a{bottom:956.453333pt;}
.y203{bottom:956.773333pt;}
.y11c{bottom:958.853333pt;}
.y2c{bottom:960.613333pt;}
.y23d{bottom:960.773333pt;}
.y224{bottom:962.853333pt;}
.ybc{bottom:964.773333pt;}
.y8f{bottom:966.213333pt;}
.yea{bottom:966.853333pt;}
.y66{bottom:967.493333pt;}
.y10d{bottom:971.653333pt;}
.y11b{bottom:974.213333pt;}
.y26c{bottom:975.973333pt;}
.y223{bottom:978.213333pt;}
.ybb{bottom:979.973333pt;}
.ye9{bottom:982.213333pt;}
.y65{bottom:982.853333pt;}
.y2b{bottom:983.493333pt;}
.y8e{bottom:989.253333pt;}
.y222{bottom:993.573333pt;}
.y181{bottom:994.533333pt;}
.yba{bottom:995.333333pt;}
.ye8{bottom:997.573333pt;}
.y64{bottom:1005.733333pt;}
.y2a{bottom:1006.213333pt;}
.y180{bottom:1008.933333pt;}
.yb9{bottom:1010.693333pt;}
.y8d{bottom:1012.613333pt;}
.ye7{bottom:1012.933333pt;}
.y63{bottom:1019.040000pt;}
.y17e{bottom:1023.360000pt;}
.y62{bottom:1026.720000pt;}
.y28{bottom:1028.960000pt;}
.y5e{bottom:1042.400000pt;}
.y25{bottom:1044.640000pt;}
.h33{height:1.600000pt;}
.h35{height:5.025000pt;}
.h34{height:5.160000pt;}
.h24{height:13.746667pt;}
.h1e{height:13.760000pt;}
.h36{height:13.786667pt;}
.h25{height:13.906667pt;}
.h2a{height:13.920000pt;}
.h2b{height:15.200000pt;}
.h14{height:15.703125pt;}
.h1b{height:16.125000pt;}
.h2d{height:16.306667pt;}
.h3c{height:19.186667pt;}
.h2c{height:20.506667pt;}
.h2e{height:27.506667pt;}
.h28{height:27.520000pt;}
.h26{height:27.540000pt;}
.h3f{height:27.546667pt;}
.h23{height:27.666667pt;}
.h27{height:27.680000pt;}
.h3d{height:27.698667pt;}
.h9{height:28.480000pt;}
.h7{height:28.560000pt;}
.h16{height:29.815000pt;}
.h1a{height:30.720000pt;}
.h21{height:34.523438pt;}
.h22{height:34.710938pt;}
.h10{height:36.413125pt;}
.h17{height:36.786667pt;}
.h13{height:38.413438pt;}
.ha{height:38.672812pt;}
.h6{height:40.800000pt;}
.h32{height:41.266667pt;}
.h3a{height:41.280000pt;}
.h2f{height:41.426667pt;}
.h29{height:41.440000pt;}
.h31{height:41.458667pt;}
.h3b{height:41.466667pt;}
.h18{height:42.063437pt;}
.h3{height:42.840000pt;}
.h1c{height:47.085938pt;}
.h19{height:47.109375pt;}
.h1f{height:48.375000pt;}
.h2{height:48.960000pt;}
.h1d{height:52.108438pt;}
.he{height:52.134375pt;}
.h11{height:53.535000pt;}
.h37{height:55.186667pt;}
.h39{height:55.200000pt;}
.h38{height:55.220000pt;}
.hb{height:56.732813pt;}
.hf{height:59.340000pt;}
.hd{height:60.437812pt;}
.hc{height:62.812500pt;}
.h30{height:68.946667pt;}
.h3e{height:68.986667pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h12{height:138.733333pt;}
.h20{height:262.266667pt;}
.h15{height:1122.386587pt;}
.h8{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w15{width:33.746667pt;}
.w12{width:34.066667pt;}
.w10{width:34.720000pt;}
.wf{width:37.600000pt;}
.w13{width:39.186667pt;}
.w1e{width:41.426667pt;}
.w1d{width:41.906667pt;}
.w1a{width:43.186667pt;}
.w1c{width:43.698667pt;}
.w19{width:44.352000pt;}
.w17{width:50.258667pt;}
.w27{width:56.000000pt;}
.w28{width:56.160000pt;}
.w1b{width:57.906667pt;}
.w6{width:64.626667pt;}
.wc{width:65.266667pt;}
.w29{width:65.632000pt;}
.w16{width:66.866667pt;}
.w2c{width:73.746667pt;}
.w25{width:74.386667pt;}
.w20{width:74.706667pt;}
.w24{width:74.898667pt;}
.w2b{width:75.058667pt;}
.w2a{width:82.066667pt;}
.w22{width:84.352000pt;}
.w23{width:84.466667pt;}
.w26{width:84.978667pt;}
.w14{width:87.218667pt;}
.we{width:89.298667pt;}
.w11{width:89.632000pt;}
.w21{width:93.938667pt;}
.w18{width:100.320000pt;}
.wa{width:102.418667pt;}
.w8{width:172.013333pt;}
.w1f{width:217.453333pt;}
.w7{width:317.013333pt;}
.wb{width:381.666667pt;}
.wd{width:426.000000pt;}
.w5{width:426.640000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w9{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:3.346667pt;}
.x6{left:7.186667pt;}
.x2a{left:9.120000pt;}
.x21{left:11.360000pt;}
.x8{left:12.960000pt;}
.x1f{left:14.560000pt;}
.x4e{left:15.520000pt;}
.x28{left:16.946667pt;}
.x49{left:18.400000pt;}
.x29{left:19.680000pt;}
.x37{left:20.960000pt;}
.x35{left:22.266667pt;}
.x45{left:23.826667pt;}
.x41{left:25.426667pt;}
.x2e{left:27.840000pt;}
.x36{left:28.946667pt;}
.x3e{left:32.160000pt;}
.x42{left:33.466667pt;}
.x3c{left:35.866667pt;}
.x44{left:37.426667pt;}
.x43{left:42.080000pt;}
.x18{left:46.746667pt;}
.x19{left:86.906667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x47{left:148.200000pt;}
.x5{left:151.240000pt;}
.x15{left:158.440000pt;}
.x4f{left:170.106667pt;}
.x9{left:172.026667pt;}
.xd{left:175.066667pt;}
.x4{left:180.874667pt;}
.xa{left:184.026667pt;}
.xf{left:202.426667pt;}
.x2b{left:203.386667pt;}
.x46{left:210.746667pt;}
.x17{left:216.520000pt;}
.x2c{left:218.760000pt;}
.x3a{left:220.186667pt;}
.x10{left:224.506667pt;}
.x1d{left:226.266667pt;}
.x3b{left:227.240000pt;}
.x11{left:230.426667pt;}
.x48{left:233.826667pt;}
.x1e{left:241.986667pt;}
.x12{left:247.746667pt;}
.x16{left:260.866667pt;}
.xe{left:265.186667pt;}
.x2d{left:269.026667pt;}
.x20{left:280.226667pt;}
.x39{left:289.986667pt;}
.xb{left:297.986667pt;}
.x1b{left:310.466667pt;}
.x22{left:315.586667pt;}
.x3d{left:321.826667pt;}
.x1c{left:329.506667pt;}
.x14{left:343.266667pt;}
.x4a{left:347.266667pt;}
.x2f{left:369.346667pt;}
.xc{left:396.893333pt;}
.x3{left:404.408000pt;}
.x23{left:405.866667pt;}
.x3f{left:406.826667pt;}
.x30{left:413.706667pt;}
.x24{left:440.586667pt;}
.x31{left:456.906667pt;}
.x13{left:469.706667pt;}
.x25{left:480.426667pt;}
.x40{left:491.946667pt;}
.x4b{left:496.266667pt;}
.x32{left:514.826667pt;}
.x33{left:558.533333pt;}
.x26{left:568.293333pt;}
.x4c{left:571.973333pt;}
.x7{left:577.893333pt;}
.x34{left:600.453333pt;}
.x27{left:602.693333pt;}
.x38{left:637.893333pt;}
.x1a{left:640.933333pt;}
}




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