.rounded-corners {
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}

.rounded-corners-color {
  background-image: linear-gradient(bottom, rgb(8,137,207) 0%, rgb(84,178,228) 75%);
  background-image: -o-linear-gradient(bottom, rgb(8,137,207) 0%, rgb(84,178,228) 75%);
  background-image: -moz-linear-gradient(bottom, rgb(8,137,207) 0%, rgb(84,178,228) 75%);
  background-image: -webkit-linear-gradient(bottom, rgb(8,137,207) 0%, rgb(84,178,228) 75%);
  background-image: -ms-linear-gradient(bottom, rgb(8,137,207) 0%, rgb(84,178,228) 75%);

  background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(8,137,207)),
	color-stop(0.75, rgb(84,178,228))
  );
  
  border: 1px solid #444;

}

.rounded-corners-button {
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}

.rounded-corners-color-button {
  background-image: linear-gradient(bottom, rgb(61,61,61) 0%, rgb(95,95,95) 75%);
  background-image: -o-linear-gradient(bottom, rgb(61,61,61) 0%, rgb(95,95,95) 75%);
  background-image: -moz-linear-gradient(bottom, rgb(61,61,61) 0%, rgb(95,95,95) 75%);
  background-image: -webkit-linear-gradient(bottom, rgb(61,61,61) 0%, rgb(95,95,95) 75%);
  background-image: -ms-linear-gradient(bottom, rgb(61,61,61) 0%, rgb(95,95,95) 75%);

  background-image: -webkit-gradient(
	linear,
	left bottom,
	left top,
	color-stop(0, rgb(61,61,61)),
	color-stop(0.75, rgb(95,95,95))
  );
  
  border: 1px solid #444;

}