/* Button Styling */

.MainBodyButtons
{
	margin: 15px 15px 25px 15px;
	font-family: Arial,Helvetica,sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #696969;
	text-align: left;
}

#ButtonContainer {
	width: 150px;
}

.button {
	
	/*Step 2: Basic Button Styles*/
	display: block;
	height: 25px;
	width: 150px;
	background: #787878;
	border: 1px solid rgba(202, 35, 33, 1.00);

	color: rgba(255, 255, 255, 1.00);	/* R,G,B,Opacity */
	text-shadow: 0 2px 2px rgba(255, 0, 0, 0.0);
	text-align: center;
	font: bold 12px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	
	background: -webkit-linear-gradient(top, #787878, #787878);
	background: -moz-linear-gradient(top, #787878, #787878);
	background: -o-linear-gradient(top, #787878, #787878);
	background: -ms-linear-gradient(top, #787878, #787878);
	background: linear-gradient(top, #787878, #787878);
	
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	/* -webkit-box-shadow: 0 3px 0 #1b383b; */
	/* -moz-box-shadow: 0 3px 0 #1b383b; */
	/* box-shadow: 0 3px 0 #1b383b; */

}

a.button {
	text-decoration: none;
}

a.button:hover {
	background: rgba(202, 35, 33, 1.00);
	/* background: -webkit-linear-gradient(top, #3d7a80, #2f5f63); */
	/* background: -moz-linear-gradient(top, #3d7a80, #2f5f63); */
	/* background: -o-linear-gradient(top, #3d7a80, #2f5f63); */
	/* background: -ms-linear-gradient(top, #3d7a80, #2f5f63); */
	/* background: linear-gradient(top, #3d7a80, #2f5f63); */
}