/* REQUIRED BUTTON STYLES: */		
button {
	position: relative;
	border: 0;
	padding: 0;
	cursor: pointer;
	overflow: visible;
	margin-top: 10px;
	margin-left: 7px;
}

button::-moz-focus-inner {
	border: none;  /* overrides extra padding in Firefox */
}

button span { 
	position: relative;
	display: block; 
	white-space: nowrap;	
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	/* Safari and Google Chrome only - fix margins */
	button span {
		margin-top: -1px;
	}
}


/* OPTIONAL BUTTON STYLES for applying custom look and feel: */	
/* Estilo generado en http://www.bestcssbuttongenerator.com/ */	
button.submitBtn {
	-moz-box-shadow: 1px 4px 11px -2px #A7A7A7;
	-webkit-box-shadow: 1px 4px 11px -2px #A7A7A7;
	box-shadow: 1px 4px 11px -2px #A7A7A7;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #9bb9f9), color-stop(1, #1355c0));
	background:-moz-linear-gradient(top, #9bb9f9 5%, #1355c0 100%);
	background:-webkit-linear-gradient(top, #9bb9f9 5%, #1355c0 100%);
	background:-o-linear-gradient(top, #9bb9f9 5%, #1355c0 100%);
	background:-ms-linear-gradient(top, #9bb9f9 5%, #1355c0 100%);
	background:linear-gradient(to bottom, #9bb9f9 5%, #1355c0 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9bb9f9', endColorstr='#1355c0',GradientType=0);
	background-color:#9bb9f9;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-size:12px;
	font-weight:bold;
	padding:5px 25px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
button.submitBtn:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #1355c0), color-stop(1, #9bb9f9));
	background:-moz-linear-gradient(top, #1355c0 5%, #9bb9f9 100%);
	background:-webkit-linear-gradient(top, #1355c0 5%, #9bb9f9 100%);
	background:-o-linear-gradient(top, #1355c0 5%, #9bb9f9 100%);
	background:-ms-linear-gradient(top, #1355c0 5%, #9bb9f9 100%);
	background:linear-gradient(to bottom, #1355c0 5%, #9bb9f9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#1355c0', endColorstr='#9bb9f9',GradientType=0);
	background-color:#1355c0;
}
button.submitBtn:active {
	position:relative;
	top:1px;
}


