/*************************
 *
 * button-primary.css
 *
 *************************/


/*--------------------
 * button-primary
 *-------------------*/
 
#content input.button-primary {
    background: #3366cc;
	font-size: 1.0em;
	height: auto;
	border: 0px;
	border-radius: 2px;
    border-color: #0073aa #006799 #006799;
    color: #fff;
	margin-top:0px;
	margin-right:0px;
	margin-bottom:30px;
	padding:12px 15px;  
    text-decoration: none;
    text-shadow: 0 -1px 1px #006799, 1px 0 1px #006799, 0 1px 1px #006799, -1px 0 1px #006799;
}

#content input.button-primary:hover {
	background: #0085ba; /*transparent;*/
}

#content input.button-primary:focus {
	background: #0085ba; /*transparent;*/
	border-color: #5b9dd9;
	box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
}

#content input.button-primary:active {
	background: transparent;
	box-shadow: none;
	transform: none;
}

