/*
FILENAME: buttons.css
DESCRIPTION: This stylesheet serves unique declarations for Onehub buttons
*/

.buttons {
	font-size: 1.1em;
	overflow: hidden;
}

.buttons button, .buttons .button {
  background: #fff url("../images/bg_button.png") bottom center repeat-x;
  border: 1px solid #b4b4b4;
  border-top: 1px solid #d4d4d4;
  border-left: 1px solid #d4d4d4;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #828282;
  cursor: pointer;
  display: block;
  float: left;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
/*  font-size: inherit;*/
  font-weight: bold;
  margin: 0 9px 0 0;
  text-decoration: none;
  text-shadow: 0 1px rgba(255, 255, 255, .75);
  text-transform: uppercase;
}

.buttons button {
  padding: 6px 10px;
}

.buttons .button {
  padding: 4px 10px;
}

.buttons button[type] {
  line-height: 16px; /* Safari */
}

.buttons button:hover, .buttons .button:hover {
  background-color: #f2f2f2;
  border-color: #b4b4b4;
}

.buttons button:active, .buttons .button:active {
  background-color: #6299c5;
  border-color: #5382a8;
  color: #fff;
  text-shadow: 0 -1px rgba(0, 0, 0, .4);
}

button::-moz-focus-inner { border-color: transparent; } /* Removes dotted border line in Firefox */

.buttons img {
  margin: -3px 0 0 3px;
  vertical-align: middle;
  width: 16px;
  height: 16px;
}

/* =INSET */

.buttons .inset {
  border-color: #999;
}

.buttons .inset:hover {
  border-color: #828282;
}

/* =POSITIVE */

.buttons .positive {
  color: #529214;
}

.buttons .positive:active {
  background-color: #529214;
  border-color: #467c11;
}

/* =NEGATIVE */

.buttons .negative {
  color: #d12f19;
}

.buttons .negative:active {
  background-color: #d12f19;
  border-color: #b22815;
}

/* =PASSIVE */

.buttons .passive {
  background: none;
  border-color: transparent;
  color: #b4b4b4;
  text-transform: none;
}

.buttons .passive:hover {
  background: none;
  border-color: #d4d4d4;
  color: #828282;
}

.buttons .passive:active {
  background: #b4b4b4;
  border-color: #b4b4b4;
  color: #fff;
}

/* =DISABLED */

.buttons button[disabled] {
  background: #d4d4d4;
  border-color: #c6c6c6;
  color: #828282;
  cursor: wait;
}