/* CMS LOGIN BUTTON */
input#AccLogFormBtn {
	font-family:Trebuchet MS;
	color:#FFFFFF;
	font-size:20px;
	font-weight:bold;
	display:inline-block;
	height:50px;
	width:150px;
	text-decoration:none;
	cursor:pointer;
	
	border:1px solid #051F4C;
	text-shadow:0px 1px 0px #051F4C;
	
	-moz-box-shadow:inset 0px 1px 0px 0px #3B81E5;
	-webkit-box-shadow:inset 0px 1px 0px 0px #3B81E5;
	box-shadow:inset 0px 1px 0px 0px #3B81E5;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	
	background:-webkit-gradient(linear, left top, left bottom, color-stop(#375580), color-stop(#343434));
	background:-moz-linear-gradient(top, #375580, #343434);
	background:-webkit-linear-gradient(top, #375580, #343434);
	background:-o-linear-gradient(top, #375580, #343434);
	background:-ms-linear-gradient(top, #375580, #343434);
	background:linear-gradient(to bottom, #375580, #343434);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#375580', endColorstr='#343434',GradientType=0);
	background-color:#375580;
}
input#AccLogFormBtn:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(#343434), color-stop(#375580));
	background:-moz-linear-gradient(top, #343434, #375580);
	background:-webkit-linear-gradient(top, #343434, #375580);
	background:-o-linear-gradient(top, #343434, #375580);
	background:-ms-linear-gradient(top, #343434, #375580);
	background:linear-gradient(to bottom, #343434, #375580);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#343434', endColorstr='#375580',GradientType=0);
	background-color:#264470;
}
input#AccLogFormBtn:active {
	position:relative;
	top:1px;
}