/* general styles */
body {
  text-rendering: optimizeLegibility;
}

button:hover {
}

button::-moz-focus-inner {
  border:0;
}

.center_wrapper
{
	display:block;
	margin:0 auto;
}

.center_buttons
{
	display:block;
	margin:0 auto;
	text-align:center;
}

/* minimal
*******************************************************************************/
.minimal {
  cursor: pointer;
  background: #e3e3e3;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 0 0 1px 1px #f6f6f6;
  -webkit-box-shadow: inset 0 0 1px 1px #f6f6f6;
  box-shadow: inset 0 0 1px 1px #f6f6f6;
  color: #333;
  font-family: "helvetica neue", helvetica, arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  padding: 9px 10px;
  text-align: center;
  text-shadow: 0 1px 0px #fff;
  display:inline-block;
  width:100px;
  margin-left:20px;
  margin-right:20px;
}
.minimalfloat{
  float:left;
  margin-right:15px;
}
.minimal:hover {
  background: #d9d9d9;
  -moz-box-shadow: inset 0 0 1px 1px #eaeaea;
  -webkit-box-shadow: inset 0 0 1px 1px #eaeaea;
  box-shadow: inset 0 0 1px 1px #eaeaea;
  color: #222;
}

.minimal:active {
  background: #d0d0d0;
  -moz-box-shadow: inset 0 0 1px 1px #e3e3e3;
  -webkit-box-shadow: inset 0 0 1px 1px #e3e3e3;
  box-shadow: inset 0 0 1px 1px #e3e3e3;
  color: #000;
}