@charset "utf-8";
/* CSS Document */

.buttonSimple{
	background:#1c43ac;
	color:white;
	height:2.0em;
	width:220px;
	display:table;
	/*change to webkit etc color*/
	border: 1px solid #1c43ac;
	font-family:Helvetica, sans-serif;
	font-weight:100;
	font-size:0.8em;
	text-transform:lowercase;
	line-height:1.8em;
	text-align:center;
	text-decoration:none;
	white-space:nowrap;
	cursor:pointer;
	border-radius:0.5em;
	-webkit-box-shadow:inset 2px 3px 3px 0px #799eff;
	-moz-box-shadow:inset 2px 3px 3px 0px #799eff;
	box-shadow:inset 2px 3px 3px 0px #799eff;
	/*to change main bg color*/
	background: #1c43ac;
	padding-top: 0;
	padding-right: 1em;
	padding-bottom: 0;
	padding-left: 1em;
	margin-bottom: 3px;
}

.buttonSimple:hover{
	background: #16368b;
	color:#fff;
}

.buttonSimple:active,.button:focus
{
	background: #16368b;
	color:white;
}





