/* line 1, item /posts/b0010-nice-buttons-with-css3/button/ (rep default) */
.button {
  display: inline-block;
  height: 18px;
  width: 160px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-width: 2px 1px 1px;
  border-style: solid;
  border-color: transparent;
  -moz-border-top-colors: transparent rgba(255, 255, 255, 0.5);
  -moz-border-left-colors: transparent;
  -moz-border-right-colors: transparent;
  -moz-border-bottom-colors: transparent;
  background: -moz-linear-gradient(top, #007a1f, #004308);
  background: -webkit-gradient(linear, left top, left bottom, from(#007a1f), to(#004308));
  background: -webkit-gradient(linear, 0 3, 0 15, from(#007a1f), to(#004308));
  -moz-background-origin: border;
  -webkit-background-origin: border;
  background-origin: border-box;
  color: white;
  font-family: sans-serif;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px;
  position: relative;
  text-decoration: none; }

/* line 29, item /posts/b0010-nice-buttons-with-css3/button/ (rep default) */
.button:focus {
  outline: 0px none;
  -moz-box-shadow: 0px 0px 5px green;
  -webkit-box-shadow: 0px 0px 5px green; }

/* line 34, item /posts/b0010-nice-buttons-with-css3/button/ (rep default) */
.button:active {
  background: -moz-linear-gradient(bottom, #007a1f, #004308);
  background: -webkit-gradient(linear, left top, left bottom, from(#004308), to(#007a1f));
  -moz-border-top-colors: transparent;
  -moz-background-origin: border;
  -webkit-background-origin: border;
  background-origin: border-box; }

/* line 42, item /posts/b0010-nice-buttons-with-css3/button/ (rep default) */
.button:visited {
  color: white; }

@media screen and (-webkit-min-device-pixel-ratio:0) {
  /* line 46, item /posts/b0010-nice-buttons-with-css3/button/ (rep default) */
  .button:before {
    content: " ";
    border: 0px none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    height: 18px;
    width: 159px;
    -webkit-border-radius: 20px;
    position: absolute;
    top: -1px; }

  /* line 57, item /posts/b0010-nice-buttons-with-css3/button/ (rep default) */
  .button:active:before {
    display: none; } }
