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



.tableshadow {

-moz-box-shadow: 0 0 5px 5px #E4E4E4;
-webkit-box-shadow: 0 0 5px 5px #E4E4E4;
box-shadow: 0 0 5px 5px #E4E4E4;

}


.button {
	font-family: 'Droid Sans', sans-serif;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin: 5px;
	border: 1px solid rgba(0,0,0,0.4) ;
	box-shadow: inset 0 1px 0 0 rgba(255,255,255,0.5),
				0 0 1px 1px rgba(255,255,255,0.8),
				0 0 0 6px rgba(0,0,0,0.06),
				0 0 0 3px rgba(0,0,0,0.1);
	cursor: pointer;
}
.title {
	
	
	color: #fff;
	font-weight: 300;
	font-size: 16px;
	text-shadow: 1px 1px rgba(0,0,0,0.3);
	text-decoration: none;

}


.green {
	background: rgb(143,200,0);

	background: -moz-linear-gradient(top,  rgba(124,174,0,1) 0%, rgba(100,134,0,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(143,200,0,1)), color-stop(100%,rgba(100,134,0,1)));
	background: -webkit-linear-gradient(top,  rgba(124,174,0,1) 0%,rgba(100,134,0,1) 100%);
	background: -o-linear-gradient(top,  rgba(124,174,0,1) 0%,rgba(100,134,0,1) 100%);
	background: -ms-linear-gradient(top,  rgba(124,174,0,1) 0%,rgba(100,134,0,1) 100%);
	background: linear-gradient(top,  rgba(124,174,0,1) 0%,rgba(100,134,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8fc800', endColorstr='#668e00',GradientType=0 );
}
.green:hover {
	background: rgb(102,142,0);
	
	background: -moz-linear-gradient(top,  rgba(100,134,0,1) 0%, rgba(124,174,0,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(100,134,0,1)), color-stop(100%,rgba(143,200,0,1)));
	background: -webkit-linear-gradient(top,  rgba(100,134,0,1) 0%,rgba(143,200,0,1) 100%);
	background: -o-linear-gradient(top,  rgba(100,134,0,1) 0%,rgba(143,200,0,1) 100%);
	background: -ms-linear-gradient(top,  rgba(100,134,0,1) 0%,rgba(143,200,0,1) 100%);
	background: linear-gradient(top,  rgba(100,134,0,1) 0%,rgba(143,200,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#668e00', endColorstr='#8fc800',GradientType=0 );
}