/*
Unfortunately, some of our css is not compatible with csstidy at the moment.
Specifically, things like repeating the background propety 3 times for different browsers.
Seperating that out to this file. 
*/

button.standard,
a.standard {
	color: #ffffff;
	border: 1px solid #ff6600;
	background: #ff6600;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff6600), to(#9a3400));
	background: -moz-linear-gradient(center top , #ff6600, #9a3400) repeat scroll 0 0 transparent;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6600', endColorstr='#9a3400');

}

button.standard:hover,
a.standard:hover {
	color: #ff6600;
	border: 1px solid #e6e7e8;
	background: #e6e7e8;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e6e7e8));
	background: -moz-linear-gradient(center top , #ffffff, #e6e7e8) repeat scroll 0 0 transparent;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e7e8');
}

#content .timeline .viewing_window {
	display: block;
	width: 536px;
	min-height: 184px;
	padding: 30px 10px 10px 10px;
	margin: 0;
	border: 1px solid #fff;
	background: #ffffff;
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eeeee3));
	background: -moz-linear-gradient(center top , #ffffff, #eeeee3) repeat scroll 0 0 transparent;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeee3');
}

.neutral h3 {
	background: #999999;
	background: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#bbbbbb));
	background: -moz-linear-gradient(center top , #eeeeee, #bbbbbb) repeat scroll 0 0 transparent;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#bbbbbb');
}

.success h3 {
	background: #ff6600;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff6600), to(#9a3400));
	background: -moz-linear-gradient(center top , #ff6600, #9a3400) repeat scroll 0 0 transparent;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6600', endColorstr='#9a3400');
	color: #ffffff;
}

.error h3 {
	background: #9a3400;
	background: -webkit-gradient(linear, left top, left bottom, from(#9a3400), to(#4f1b00));
	background: -moz-linear-gradient(center top , #9a3400, #4f1b00) repeat scroll 0 0 transparent;
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9a3400', endColorstr='#4f1b00');
}

